Skip to content
Snippets Groups Projects
Select Git revision
  • b5be5da0804278c5b21dfa678fc22ebd8d3f3a09
  • master default protected
2 results

Component.js

Blame
  • Forked from an inaccessible project.
    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;
        }
    }