| 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: 1.7 $ $Date: 2001/11/10 01:24:20 $ |
Method Summary | |
public String | getInfo() Return descriptive information about this Valve implementation. | public void | invoke(Request request, Response response, ValveContext valveContext) Select the appropriate child Host to process this request,
based on the requested server name. |
getInfo | public String getInfo()(Code) | | Return descriptive information about this Valve implementation.
|
invoke | public void invoke(Request request, Response response, ValveContext valveContext) 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 |
|
|