Methods Summary |
---|
private void | checkNull(java.lang.String s)
if (s == null) {
throw new NullPointerException();
}
|
public java.lang.Object | clone()
try {
return super.clone();
}
catch (CloneNotSupportedException e){ return null;}
|
public java.lang.String | getHost()Get the host of the receiver
return this.host;
|
public java.lang.String | getPort()Get the port of the receiver
return this.port;
|
public int | hashCode()
final String s = host+port+(useSSL ? "t" : "f");
return s.hashCode();
|
public boolean | useSSL()Indicate if ssl should be used to communicate to the admin server
return this.useSSL;
|