com.sun.enterprise.util
Class HostAndPort
java.lang.Object
com.sun.enterprise.util.HostAndPort
public class HostAndPort
- extends Object
Represents a host and a port in a convenient package that also
accepts a convenient constructor.
HostAndPort
public HostAndPort(String host,
int port,
boolean secure)
- Construct a HostAndPort object.
- Parameters:
host - the host nameport - the port numbersecure - does this host require a secure (SSL) connection?
HostAndPort
public HostAndPort(HostAndPort rhs)
HostAndPort
public HostAndPort(String host,
int port)
HostAndPort
public HostAndPort(String str)
- Construct a new HostAndPort from a string of the form "host:port".
- Parameters:
str - string of the form "host:port"
isSecure
public boolean isSecure()
getHost
public String getHost()
getPort
public int getPort()
toString
public String toString()
- Overrides:
toString in class Object
Copyright © 2012 GlassFish Community. All Rights Reserved.