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.
44 * Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.html">this webpage</a>
54 public static final String HTTP = "HTTP";
56 /** HTTP protocol version 0.9 */
59 /** HTTP protocol version 1.0 */
62 /** HTTP protocol version 1.1 */
67 * Create an HTTP protocol version designator.
69 * @param major the major version number of the HTTP protocol
70 * @param minor the minor version number of the HTTP protocol
75 super(HTTP, major, minor);
80 * Obtains a specific HTTP version.