Home | History | Annotate | Download | only in http

Lines Matching full:httphost

2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/HttpHost.java $
55 public final class HttpHost implements Cloneable {
75 * Creates a new {@link HttpHost HttpHost}, specifying all values.
76 * Constructor for HttpHost.
85 public HttpHost(final String hostname, int port, final String scheme) {
101 * Creates a new {@link HttpHost HttpHost}, with default scheme.
107 public HttpHost(final String hostname, int port) {
112 * Creates a new {@link HttpHost HttpHost}, with default scheme and port.
116 public HttpHost(final String hostname) {
121 * Copy constructor for {@link HttpHost HttpHost}.
123 * @param httphost the HTTP host to copy details from
125 public HttpHost (final HttpHost httphost) {
126 this(httphost.hostname, httphost.port, httphost.schemeName);
198 if (obj instanceof HttpHost) {
199 HttpHost that = (HttpHost) obj;