Select Git revision
package.json
-
Maxime MORGE authoredMaxime MORGE authored
This project manages its dependencies using npm.
Learn more
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;
}
}