| java.lang.Object org.apache.catalina.valves.ValveBase org.apache.catalina.core.StandardContextValve
StandardContextValve | final class StandardContextValve extends ValveBase (Code) | | Valve that implements the default basic behavior for the
StandardContext container implementation.
USAGE CONSTRAINT: This implementation is likely to be useful only
when processing HTTP requests.
author: Craig R. McClanahan version: $Revision: 467222 $ $Date: 2006-10-24 05:17:11 +0200 (mar., 24 oct. 2006) $ |
Method Summary | |
final public void | event(Request request, Response response, CometEvent event) Select the appropriate child Wrapper to process this request,
based on the specified request URI. | public String | getInfo() Return descriptive information about this Valve implementation. | final public void | invoke(Request request, Response response) Select the appropriate child Wrapper to process this request,
based on the specified request URI. | public void | setContainer(Container container) Cast to a StandardContext right away, as it will be needed later. |
event | final public void event(Request request, Response response, CometEvent event) throws IOException, ServletException(Code) | | Select the appropriate child Wrapper to process this request,
based on the specified request URI. If no matching Wrapper can
be found, return an appropriate HTTP error.
Parameters: request - Request to be processed Parameters: response - Response to be produced Parameters: valveContext - Valve context used to forward to the next Valve exception: IOException - if an input/output error occurred exception: ServletException - if a servlet error occurred |
getInfo | public String getInfo()(Code) | | Return descriptive information about this Valve implementation.
|
invoke | final public void invoke(Request request, Response response) throws IOException, ServletException(Code) | | Select the appropriate child Wrapper to process this request,
based on the specified request URI. If no matching Wrapper can
be found, return an appropriate HTTP error.
Parameters: request - Request to be processed Parameters: response - Response to be produced Parameters: valveContext - Valve context used to forward to the next Valve exception: IOException - if an input/output error occurred exception: ServletException - if a servlet error occurred |
|
|