Lines Matching refs:HttpHost
2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/HttpHost.java $
50 public final class HttpHost implements Cloneable {
70 * Creates a new {@link HttpHost HttpHost}, specifying all values.
71 * Constructor for HttpHost.
80 public HttpHost(final String hostname, int port, final String scheme) {
96 * Creates a new {@link HttpHost HttpHost}, with default scheme.
102 public HttpHost(final String hostname, int port) {
107 * Creates a new {@link HttpHost HttpHost}, with default scheme and port.
111 public HttpHost(final String hostname) {
116 * Copy constructor for {@link HttpHost HttpHost}.
118 * @param httphost the HTTP host to copy details from
120 public HttpHost (final HttpHost httphost) {
121 this(httphost.hostname, httphost.port, httphost.schemeName);
193 if (obj instanceof HttpHost) {
194 HttpHost that = (HttpHost) obj;