package vicazh.hyperpool.stream.net.http.html;
import java.util.*;
/**
* The ftp service
*
* @author Victor Zhigunov
* @version 0.4.0
*/
public class FtpService extends Service {
String page;
Map<Object, String> map;
int timeout;
/**
* @param page
* directory list xsl
* @param map
* map types
* @param timeout
* socket timeout
*/
public FtpService(String page, Map<Object, String> map, int timeout) {
this.page = page;
this.map = map;
this.timeout = timeout;
}
public Connection getConnection() {
return new FtpConnection(this);
}
}
|