fun.mike.frontier.impl.alpha.FtpConnector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of frontier-alpha Show documentation
Show all versions of frontier-alpha Show documentation
A file transfer library. Wraps commons-net and JSch.
package fun.mike.frontier.impl.alpha;
import org.apache.commons.net.ftp.FTPClient;
public class FtpConnector {
private final FTPClient client;
private final String host;
private final Integer port;
public FtpConnector(FTPClient client, String host, Integer port) {
this.client = client;
this.host = host;
this.port = port;
}
public FTPClient getClient() {
return client;
}
public String getHost() {
return host;
}
public Integer getPort() {
return port;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy