Methods Summary |
---|
public boolean | equals(java.lang.Object obj)
if (!(obj instanceof EndPointInfoImpl)) {
return false;
}
EndPointInfoImpl other = (EndPointInfoImpl)obj;
if (type == null) {
if (other.type != null) {
return false;
}
} else if (!type.equals(other.type)) {
return false;
}
if (port != other.port) {
return false;
}
if (!hostname.equals(other.hostname)) {
return false;
}
return true;
|
public java.lang.String | getHost()
return hostname;
|
public java.lang.String | getHostName()
return hostname;
|
public int | getLocatorPort()
return locatorPort;
|
public java.lang.String | getName()
return name;
|
public int | getPort()
return port;
|
public java.lang.String | getType()
return type;
|
public int | hashCode()
return type.hashCode() ^ hostname.hashCode() ^ port;
|
public void | setLocatorPort(int port)
locatorPort = port;
|
public java.lang.String | toString()
return
type + " " +
name + " " +
hostname + " " +
port;
|