Class HttpProxyConstants
- java.lang.Object
-
- org.apache.mina.proxy.handlers.http.HttpProxyConstants
-
public class HttpProxyConstants extends java.lang.Object
HttpProxyConstants.java - HTTP Proxy constants.- Since:
- MINA 2.0.0-M3
- Author:
- Apache MINA Project
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
CONNECT
The HTTP CONNECT verb.static java.lang.String
CRLF
The CRLF character sequence used in HTTP protocol to end each line.static java.lang.String
DEFAULT_KEEP_ALIVE_TIME
The default keep-alive timeout we set to make proxy connection persistent.static java.lang.String
DOMAIN_PROPERTY
The domain name property.static java.lang.String
GET
The HTTP GET verb.static java.lang.String
HTTP_1_0
The HTTP 1.0 protocol version string.static java.lang.String
HTTP_1_1
The HTTP 1.1 protocol version string.static java.lang.String
PUT
The HTTP PUT verb.static java.lang.String
PWD_PROPERTY
The password property.static java.lang.String
USER_PROPERTY
The username property.static java.lang.String
WORKSTATION_PROPERTY
The workstation name property.
-
-
-
Field Detail
-
CONNECT
public static final java.lang.String CONNECT
The HTTP CONNECT verb.- See Also:
- Constant Field Values
-
GET
public static final java.lang.String GET
The HTTP GET verb.- See Also:
- Constant Field Values
-
PUT
public static final java.lang.String PUT
The HTTP PUT verb.- See Also:
- Constant Field Values
-
HTTP_1_0
public static final java.lang.String HTTP_1_0
The HTTP 1.0 protocol version string.- See Also:
- Constant Field Values
-
HTTP_1_1
public static final java.lang.String HTTP_1_1
The HTTP 1.1 protocol version string.- See Also:
- Constant Field Values
-
CRLF
public static final java.lang.String CRLF
The CRLF character sequence used in HTTP protocol to end each line.- See Also:
- Constant Field Values
-
DEFAULT_KEEP_ALIVE_TIME
public static final java.lang.String DEFAULT_KEEP_ALIVE_TIME
The default keep-alive timeout we set to make proxy connection persistent. Set to 300 ms.- See Also:
- Constant Field Values
-
USER_PROPERTY
public static final java.lang.String USER_PROPERTY
The username property. Used in auth mechs.- See Also:
- Constant Field Values
-
PWD_PROPERTY
public static final java.lang.String PWD_PROPERTY
The password property. Used in auth mechs.- See Also:
- Constant Field Values
-
DOMAIN_PROPERTY
public static final java.lang.String DOMAIN_PROPERTY
The domain name property. Used in auth mechs.- See Also:
- Constant Field Values
-
WORKSTATION_PROPERTY
public static final java.lang.String WORKSTATION_PROPERTY
The workstation name property. Used in auth mechs.- See Also:
- Constant Field Values
-
-