Class HttpProxyConstants
- java.lang.Object
-
- org.apache.mina.proxy.handlers.http.HttpProxyConstants
-
public class HttpProxyConstants extends 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 StringCONNECTThe HTTP CONNECT verb.static StringCRLFThe CRLF character sequence used in HTTP protocol to end each line.static StringDEFAULT_KEEP_ALIVE_TIMEThe default keep-alive timeout we set to make proxy connection persistent.static StringDOMAIN_PROPERTYThe domain name property.static StringGETThe HTTP GET verb.static StringHTTP_1_0The HTTP 1.0 protocol version string.static StringHTTP_1_1The HTTP 1.1 protocol version string.static StringPUTThe HTTP PUT verb.static StringPWD_PROPERTYThe password property.static StringUSER_PROPERTYThe username property.static StringWORKSTATION_PROPERTYThe workstation name property.
-
-
-
Field Detail
-
CONNECT
public static final String CONNECT
The HTTP CONNECT verb.- See Also:
- Constant Field Values
-
GET
public static final String GET
The HTTP GET verb.- See Also:
- Constant Field Values
-
PUT
public static final String PUT
The HTTP PUT verb.- See Also:
- Constant Field Values
-
HTTP_1_0
public static final String HTTP_1_0
The HTTP 1.0 protocol version string.- See Also:
- Constant Field Values
-
HTTP_1_1
public static final String HTTP_1_1
The HTTP 1.1 protocol version string.- See Also:
- Constant Field Values
-
CRLF
public static final 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 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 String USER_PROPERTY
The username property. Used in auth mechs.- See Also:
- Constant Field Values
-
PWD_PROPERTY
public static final String PWD_PROPERTY
The password property. Used in auth mechs.- See Also:
- Constant Field Values
-
DOMAIN_PROPERTY
public static final String DOMAIN_PROPERTY
The domain name property. Used in auth mechs.- See Also:
- Constant Field Values
-
WORKSTATION_PROPERTY
public static final String WORKSTATION_PROPERTY
The workstation name property. Used in auth mechs.- See Also:
- Constant Field Values
-
-