| |
|
| java.lang.Object org.apache.coyote.Request
Request | final public class Request (Code) | | This is a low-level, efficient representation of a server request. Most
fields are GC-free, expensive operations are delayed until the user code
needs the information.
Processing is delegated to modules, using a hook mechanism.
This class is not intended for user code - it is used internally by tomcat
for processing the request in the most efficient way. Users ( servlets ) can
access the information using a facade, which provides the high-level view
of the request.
For lazy evaluation, the request uses the getInfo() hook. The following ids
are defined:
- req.encoding - returns the request encoding
- req.attribute - returns a module-specific attribute ( like SSL keys, etc ).
Tomcat defines a number of attributes:
- "org.apache.tomcat.request" - allows access to the low-level
request object in trusted applications
author: James Duncan Davidson [duncan@eng.sun.com] author: James Todd [gonzo@eng.sun.com] author: Jason Hunter [jch@eng.sun.com] author: Harish Prabandham author: Alex Cruikshank [alex@epitonic.com] author: Hans Bergsten [hans@gefionsoftware.com] author: Costin Manolache author: Remy Maucherat |
Constructor Summary | |
public | Request() |
getBytesRead | public int getBytesRead()(Code) | | |
getCharacterEncoding | public String getCharacterEncoding()(Code) | | Get the character encoding used for this request.
|
getContentLength | public int getContentLength()(Code) | | |
getContentLengthLong | public long getContentLengthLong()(Code) | | |
getLocalPort | public int getLocalPort()(Code) | | |
getRemotePort | public int getRemotePort()(Code) | | |
getServerPort | public int getServerPort()(Code) | | |
getStartTime | public long getStartTime()(Code) | | |
instanceId | public MessageBytes instanceId()(Code) | | Get the instance id (or JVM route). Curently Ajp is sending it with each
request. In future this should be fixed, and sent only once ( or
'negociated' at config time so both tomcat and apache share the same name.
the instance id |
recycle | public void recycle()(Code) | | |
serverName | public MessageBytes serverName()(Code) | | Return the buffer holding the server name, if
any. Use isNull() to check if there is no value
set.
This is the "virtual host", derived from the
Host: header.
|
setBytesRead | public void setBytesRead(int bytesRead)(Code) | | |
setCharacterEncoding | public void setCharacterEncoding(String enc)(Code) | | |
setContentLength | public void setContentLength(int len)(Code) | | |
setLocalPort | public void setLocalPort(int port)(Code) | | |
setNote | final public void setNote(int pos, Object value)(Code) | | |
setRemotePort | public void setRemotePort(int port)(Code) | | |
setServerPort | public void setServerPort(int serverPort)(Code) | | |
setStartTime | public void setStartTime(long startTime)(Code) | | |
updateCounters | public void updateCounters()(Code) | | |
|
|
|