ServletInputStream | createInputStream() - Create and return a ServletInputStream to read the content
associated with this Request.
|
void | finishRequest() - Perform whatever actions are required to flush and close the input
stream or reader, in a single operation.
|
String | getAuthorization() - Return the authorization credentials sent with this request.
|
Connector | getConnector() - Return the Connector through which this Request was received.
|
Context | getContext() - Return the Context within which this Request is being processed.
|
FilterChain | getFilterChain() - Get filter chain associated with the request.
|
Host | getHost() - Return the Host within which this Request is being processed.
|
String | getInfo() - Return descriptive information about this Request implementation and
the corresponding version number, in the format
<description>/<version> .
|
Object | getNote(String name) - Return the object bound with the specified name to the internal notes
for this request, or
null if no such binding exists.
|
Iterator | getNoteNames() - Return an Iterator containing the String names of all notes bindings
that exist for this request.
|
ServletRequest | getRequest() - Return the
ServletRequest for which this object
is the facade.
|
Response | getResponse() - Return the Response with which this Request is associated.
|
Socket | getSocket() - Return the Socket (if any) through which this Request was received.
|
InputStream | getStream() - Return the input stream associated with this Request.
|
ValveContext | getValveContext() - Get valve context.
|
Wrapper | getWrapper() - Return the Wrapper within which this Request is being processed.
|
void | recycle() - Release all object references, and initialize instance variables, in
preparation for reuse of this object.
|
void | removeNote(String name) - Remove any object bound to the specified name in the internal notes
for this request.
|
void | setAuthorization(String authorization) - Set the authorization credentials sent with this request.
|
void | setConnector(Connector connector) - Set the Connector through which this Request was received.
|
void | setContentLength(int length) - Set the content length associated with this Request.
|
void | setContentType(String type) - Set the content type (and optionally the character encoding)
associated with this Request.
|
void | setContext(Context context) - Set the Context within which this Request is being processed.
|
void | setFilterChain(FilterChain filterChain) - Set filter chain associated with the request.
|
void | setHost(Host host) - Set the Host within which this Request is being processed.
|
void | setNote(String name, Object value) - Bind an object to a specified name in the internal notes associated
with this request, replacing any existing binding for this name.
|
void | setProtocol(String protocol) - Set the protocol name and version associated with this Request.
|
void | setRemoteAddr(String remote) - Set the remote IP address associated with this Request.
|
void | setResponse(Response response) - Set the Response with which this Request is associated.
|
void | setScheme(String scheme) - Set the name of the scheme associated with this request.
|
void | setSecure(boolean secure) - Set the value to be returned by
isSecure()
for this Request.
|
void | setServerName(String name) - Set the name of the server (virtual host) to process this request.
|
void | setServerPort(int port) - Set the port number of the server to process this request.
|
void | setSocket(Socket socket) - Set the Socket (if any) through which this Request was received.
|
void | setStream(InputStream stream) - Set the input stream associated with this Request.
|
void | setValveContext(ValveContext valveContext) - Set valve context.
|
void | setWrapper(Wrapper wrapper) - Set the Wrapper within which this Request is being processed.
|