Home | History | Annotate | Download | only in http

Lines Matching refs:scheme

41  * This includes remote host name, port and scheme.
57 /** The default scheme is "http". */
70 /** The scheme */
80 * <code>-1</code> indicates the scheme default port.
81 * @param scheme the name of the scheme.
83 * {@link #DEFAULT_SCHEME_NAME default scheme}
85 public HttpHost(final String hostname, int port, final String scheme) {
92 if (scheme != null) {
93 this.schemeName = scheme.toLowerCase(Locale.ENGLISH);
101 * Creates a new {@link HttpHost HttpHost}, with default scheme.
105 * <code>-1</code> indicates the scheme default port.
112 * Creates a new {@link HttpHost HttpHost}, with default scheme and port.
148 * Returns the scheme name.
150 * @return the scheme name
175 * Obtains the host string, without scheme prefix.