com.sun.enterprise.util
Class HostAndPort

java.lang.Object
  extended by 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.


Constructor Summary
HostAndPort(HostAndPort rhs)
           
HostAndPort(String str)
          Construct a new HostAndPort from a string of the form "host:port".
HostAndPort(String host, int port)
           
HostAndPort(String host, int port, boolean secure)
          Construct a HostAndPort object.
 
Method Summary
 String getHost()
           
 int getPort()
           
 boolean isSecure()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HostAndPort

public HostAndPort(String host,
                   int port,
                   boolean secure)
Construct a HostAndPort object.

Parameters:
host - the host name
port - the port number
secure - 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"
Method Detail

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.