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

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

There is a newer version: 1.2.5
Show newest version
package com.lorne.sds.server.model;

import java.util.List;

/**
 * create by lorne on 2017/12/6
 */
public class DeliveryModel {

    private String ip;

    private int port;

    private boolean testRedis;

    private List deliverys;

    private List sockets;

    public List getDeliverys() {
        return deliverys;
    }

    public void setDeliverys(List deliverys) {
        this.deliverys = deliverys;
    }

    public List getSockets() {
        return sockets;
    }

    public void setSockets(List sockets) {
        this.sockets = sockets;
    }

    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 boolean isTestRedis() {
        return testRedis;
    }

    public void setTestRedis(boolean testRedis) {
        this.testRedis = testRedis;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy