Home | History | Annotate | Download | only in http

Lines Matching refs:HTTP

2  * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/HttpVersion.java $
15 * http://www.apache.org/licenses/LICENSE-2.0
28 * <http://www.apache.org/>.
32 package org.apache.http;
37 * Represents an HTTP version, as specified in RFC 2616.
49 public static final String HTTP = "HTTP";
51 /** HTTP protocol version 0.9 */
54 /** HTTP protocol version 1.0 */
57 /** HTTP protocol version 1.1 */
62 * Create an HTTP protocol version designator.
64 * @param major the major version number of the HTTP protocol
65 * @param minor the minor version number of the HTTP protocol
70 super(HTTP, major, minor);
75 * Obtains a specific HTTP version.