Skip to content
Snippets Groups Projects
Select Git revision
  • 0db33b3e0d937ab618921fc235545baeabfe093d
  • main default protected
  • version_pour_projet_2
  • dev
  • LIVRABLE_3
  • LIVRABLE_2
  • LIVRABLE_1
7 results

FTPServerConfig.java

Blame
  • 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;
        }
    }