com.github.ltsopensource.jobtracker.domain.JobClientNode Maven / Gradle / Ivy
package com.github.ltsopensource.jobtracker.domain;
import com.github.ltsopensource.jobtracker.channel.ChannelWrapper;
/**
* @author Robert HG ([email protected]) on 8/17/14.
* 客户端节点
*/
public class JobClientNode {
// 节点组名称
public String nodeGroup;
// 唯一标识
public String identity;
// 该节点的channel
public ChannelWrapper channel;
public JobClientNode(String nodeGroup, String identity, ChannelWrapper channel) {
this.nodeGroup = nodeGroup;
this.identity = identity;
this.channel = channel;
}
public JobClientNode(String identity) {
this.identity = identity;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof JobClientNode)) return false;
JobClientNode that = (JobClientNode) o;
if (identity != null ? !identity.equals(that.identity) : that.identity != null) return false;
return true;
}
@Override
public int hashCode() {
return identity != null ? identity.hashCode() : 0;
}
public String getNodeGroup() {
return nodeGroup;
}
public void setNodeGroup(String nodeGroup) {
this.nodeGroup = nodeGroup;
}
public String getIdentity() {
return identity;
}
public void setIdentity(String identity) {
this.identity = identity;
}
public ChannelWrapper getChannel() {
return channel;
}
public void setChannel(ChannelWrapper channel) {
this.channel = channel;
}
@Override
public String toString() {
return "JobClientNode{" +
"nodeGroup='" + nodeGroup + '\'' +
", identity='" + identity + '\'' +
", channel=" + channel +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy