Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

pom.xml

Blame
  • Forked from Yvan Peter / rest-tutoriel
    Source project has a limited visibility.
    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;
        }
    }