| java.lang.Object org.apache.catalina.valves.ValveBase org.apache.catalina.core.StandardEngineValve
StandardEngineValve | final class StandardEngineValve extends ValveBase (Code) | | Valve that implements the default basic behavior for the
StandardEngine 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) Process Comet event. | public String | getInfo() Return descriptive information about this Valve implementation. | final public void | invoke(Request request, Response response) Select the appropriate child Host to process this request,
based on the requested server name. |
event | final public void event(Request request, Response response, CometEvent event) throws IOException, ServletException(Code) | | Process Comet event.
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 Host to process this request,
based on the requested server name. If no matching Host 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 |
|
|