| java.lang.Object org.apache.catalina.valves.ValveBase org.apache.catalina.core.StandardHostValve
StandardHostValve | final class StandardHostValve extends ValveBase (Code) | | Valve that implements the default basic behavior for the
StandardHost container implementation.
USAGE CONSTRAINT: This implementation is likely to be useful only
when processing HTTP requests.
author: Craig R. McClanahan version: $Revision: 1.6 $ $Date: 2002/01/04 16:33:40 $ |
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 Context to process this request,
based on the specified request URI. |
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 Context to process this request,
based on the specified request URI. If no matching Context 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 |
|
|