Select Git revision
Forked from
Yvan Peter / rest-tutoriel
Source project has a limited visibility.
-
Cody Dumortier authoredCody Dumortier authored
FTPServerConfig.java 797 B
package fil.sr2.flopbox.utils;
/** Represents the configuration of a FTP server */
public class FTPServerConfig {
private String alias;
private String host;
private int port;
public FTPServerConfig() {
}
public FTPServerConfig(String alias, String host, int port) {
this.alias = alias;
this.host = host;
this.port = port;
}
// Getters et setters
public String getAlias() {
return alias;
}
public void setAlias(String alias) {
this.alias = alias;
}
public String getHost() {
return host;
}
public void setHost(String host) {
this.host = host;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
}