Package org.apache.http
Class HttpHost
java.lang.Object
org.apache.http.HttpHost
- All Implemented Interfaces:
Serializable,Cloneable
@Contract(threading=IMMUTABLE)
public final class HttpHost
extends Object
implements Cloneable, Serializable
Holds all of the variables needed to describe an HTTP connection to a host.
This includes remote host name, port and scheme.
- Since:
- 4.0
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreatesHttpHostinstance with the default scheme and port and the given hostname.CreatesHttpHostinstance with the default scheme and the given hostname and port.CreatesHttpHostinstance with the given scheme, hostname and port.HttpHost(InetAddress address) CreatesHttpHostinstance with the default scheme and port and the given inet address.HttpHost(InetAddress address, int port) CreatesHttpHostinstance with the default scheme and the given inet address and port.HttpHost(InetAddress address, int port, String scheme) CreatesHttpHostinstance with the given scheme, inet address and port.HttpHost(InetAddress address, String hostname, int port, String scheme) Creates a newHttpHost, specifying all values.Copy constructor forHttpHost. -
Method Summary
Modifier and TypeMethodDescriptionclone()static HttpHostCreatesHttpHostinstance from string.booleanReturns the inet address if explicitly set by a constructor,nullotherwise.Returns the host name.intgetPort()Returns the port.Returns the scheme name.inthashCode()Obtains the host string, without scheme prefix.toString()toURI()Return the host URI, as a string.
-
Field Details
-
DEFAULT_SCHEME_NAME
The default scheme is "http".- See Also:
-
-
Constructor Details
-
HttpHost
CreatesHttpHostinstance with the given scheme, hostname and port.- Parameters:
hostname- the hostname (IP or DNS name)port- the port number.-1indicates the scheme default port.scheme- the name of the scheme.nullindicates thedefault scheme
-
HttpHost
CreatesHttpHostinstance with the default scheme and the given hostname and port.- Parameters:
hostname- the hostname (IP or DNS name)port- the port number.-1indicates the scheme default port.
-
HttpHost
CreatesHttpHostinstance with the default scheme and port and the given hostname.- Parameters:
hostname- the hostname (IP or DNS name)
-
HttpHost
CreatesHttpHostinstance with the given scheme, inet address and port.- Parameters:
address- the inet address.port- the port number.-1indicates the scheme default port.scheme- the name of the scheme.nullindicates thedefault scheme- Since:
- 4.3
-
HttpHost
Creates a newHttpHost, specifying all values. Constructor for HttpHost.- Parameters:
address- the inet address.hostname- the hostname (IP or DNS name)port- the port number.-1indicates the scheme default port.scheme- the name of the scheme.nullindicates thedefault scheme- Since:
- 4.4
-
HttpHost
CreatesHttpHostinstance with the default scheme and the given inet address and port.- Parameters:
address- the inet address.port- the port number.-1indicates the scheme default port.- Since:
- 4.3
-
HttpHost
CreatesHttpHostinstance with the default scheme and port and the given inet address.- Parameters:
address- the inet address.- Since:
- 4.3
-
HttpHost
Copy constructor forHttpHost.- Parameters:
httphost- the HTTP host to copy details from
-
-
Method Details
-
create
CreatesHttpHostinstance from string. Text may not contain any blanks.- Since:
- 4.4
-
getHostName
Returns the host name.- Returns:
- the host name (IP or DNS name)
-
getPort
public int getPort()Returns the port.- Returns:
- the host port, or
-1if not set
-
getSchemeName
Returns the scheme name.- Returns:
- the scheme name
-
getAddress
Returns the inet address if explicitly set by a constructor,nullotherwise.- Returns:
- the inet address
- Since:
- 4.3
-
toURI
Return the host URI, as a string.- Returns:
- the host URI
-
toHostString
Obtains the host string, without scheme prefix.- Returns:
- the host string, for example
localhost:8080
-
toString
-
equals
-
hashCode
public int hashCode() -
clone
- Throws:
CloneNotSupportedException
-