All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lorne.sds.server.model.Server Maven / Gradle / Ivy

package com.lorne.sds.server.model;

/**
 * create by lorne on 2017/9/21
 */
public class Server {

    private String ip;
    private int port;

    private int nowCount;
    private int maxCount;

    public String getIp() {
        return ip;
    }

    public void setIp(String ip) {
        this.ip = ip;
    }

    public int getPort() {
        return port;
    }

    public void setPort(int port) {
        this.port = port;
    }

    public int getNowCount() {
        return nowCount;
    }

    public void setNowCount(int nowCount) {
        this.nowCount = nowCount;
    }

    public int getMaxCount() {
        return maxCount;
    }

    public void setMaxCount(int maxCount) {
        this.maxCount = maxCount;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy