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.
  • Constructor Details

    • 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 Details

    • isSecure

      public boolean isSecure()
    • getHost

      public String getHost()
    • getPort

      public int getPort()
    • toString

      public String toString()
      Overrides:
      toString in class Object