Package org.apache.coyote
Class Constants
java.lang.Object
org.apache.coyote.Constants
Constants.
- Author:
- Remy Maucherat
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final Charsetstatic final intstatic final booleanstatic final Charsetstatic final booleanHas security been turned on?static final intstatic final StringThe request attribute set by the RemoteIpFilter, RemoteIpValve (and may be set by other similar components) that identifies for the connector the connection peer IP address.static final StringThe request attribute set by the RemoteIpFilter, RemoteIpValve (and may be set by other similar components) that identifies for the connector the remote IP address claimed to be associated with this request when a request is received via one or more proxies.static final StringThe request attribute that can be used by a servlet to pass to the connector the end offset (not including) of the part of a file that is to be served by sendfile.static final StringThe request attribute that can be used by a servlet to pass to the connector the start offset of the part of a file that is to be served by sendfile.static final StringThe request attribute that can be used by a servlet to pass to the connector the name of the file that is to be served by sendfile.static final StringThe request attribute that is set to the value ofBoolean.TRUEif connector processing this request supports use of sendfile.static final intstatic final intstatic final intstatic final intstatic final intstatic final intstatic final intstatic final int
- 
Constructor SummaryConstructors
- 
Method Summary
- 
Field Details- 
DEFAULT_URI_CHARSET
- 
DEFAULT_BODY_CHARSET
- 
MAX_NOTESpublic static final int MAX_NOTES- See Also:
 
- 
STAGE_NEWpublic static final int STAGE_NEW- See Also:
 
- 
STAGE_PARSEpublic static final int STAGE_PARSE- See Also:
 
- 
STAGE_PREPAREpublic static final int STAGE_PREPARE- See Also:
 
- 
STAGE_SERVICEpublic static final int STAGE_SERVICE- See Also:
 
- 
STAGE_ENDINPUTpublic static final int STAGE_ENDINPUT- See Also:
 
- 
STAGE_ENDOUTPUTpublic static final int STAGE_ENDOUTPUT- See Also:
 
- 
STAGE_KEEPALIVEpublic static final int STAGE_KEEPALIVE- See Also:
 
- 
STAGE_ENDEDpublic static final int STAGE_ENDED- See Also:
 
- 
DEFAULT_CONNECTION_LINGERpublic static final int DEFAULT_CONNECTION_LINGER- See Also:
 
- 
DEFAULT_TCP_NO_DELAYpublic static final boolean DEFAULT_TCP_NO_DELAY- See Also:
 
- 
IS_SECURITY_ENABLEDpublic static final boolean IS_SECURITY_ENABLEDHas security been turned on?
- 
SENDFILE_SUPPORTED_ATTRThe request attribute that is set to the value ofBoolean.TRUEif connector processing this request supports use of sendfile.- See Also:
 
- 
SENDFILE_FILENAME_ATTRThe request attribute that can be used by a servlet to pass to the connector the name of the file that is to be served by sendfile. The value should beStringthat isFile.getCanonicalPath()of the file to be served.- See Also:
 
- 
SENDFILE_FILE_START_ATTRThe request attribute that can be used by a servlet to pass to the connector the start offset of the part of a file that is to be served by sendfile. The value should bejava.lang.Long. To serve complete file the value should beLong.valueOf(0).- See Also:
 
- 
SENDFILE_FILE_END_ATTRThe request attribute that can be used by a servlet to pass to the connector the end offset (not including) of the part of a file that is to be served by sendfile. The value should bejava.lang.Long. To serve complete file the value should be equal to the length of the file.- See Also:
 
- 
REMOTE_ADDR_ATTRIBUTEThe request attribute set by the RemoteIpFilter, RemoteIpValve (and may be set by other similar components) that identifies for the connector the remote IP address claimed to be associated with this request when a request is received via one or more proxies. It is typically provided via the X-Forwarded-For HTTP header.- See Also:
 
- 
PEER_ADDR_ATTRIBUTEThe request attribute set by the RemoteIpFilter, RemoteIpValve (and may be set by other similar components) that identifies for the connector the connection peer IP address.- See Also:
 
 
- 
- 
Constructor Details- 
Constantspublic Constants()
 
-