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

Alachisoft.NCache.DataModel.ConnectedServer Maven / Gradle / Ivy

The newest version!
package Alachisoft.NCache.DataModel;

public class ConnectedServer {

    private int id;
    private int clusterHealthId;
    private int nodeId;

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public int getClusterHealthId() {
        return clusterHealthId;
    }

    public void setClusterHealthId(int clusterHealthId) {
        this.clusterHealthId = clusterHealthId;
    }

    public int getNodeId() {
        return nodeId;
    }

    public void setNodeId(int nodeId) {
        this.nodeId = nodeId;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy