| java.lang.Object org.apache.catalina.core.StandardValveContext
StandardValveContext | final public class StandardValveContext implements ValveContext(Code) | | Standard implementation of a ValveContext .
author: Craig R. McClanahan author: Remy Maucherat |
Method Summary | |
public String | getInfo() Return descriptive information about this ValveContext
implementation. | final public void | invokeNext(Request request, Response response) Cause the invoke() method of the next Valve that is
part of the Pipeline currently being processed (if any) to be
executed, passing on the specified request and response objects
plus this ValveContext instance. | void | set(Valve basic, Valve valves) Reset state. |
stage | protected int stage(Code) | | |
getInfo | public String getInfo()(Code) | | Return descriptive information about this ValveContext
implementation.
|
invokeNext | final public void invokeNext(Request request, Response response) throws IOException, ServletException(Code) | | Cause the invoke() method of the next Valve that is
part of the Pipeline currently being processed (if any) to be
executed, passing on the specified request and response objects
plus this ValveContext instance. Exceptions thrown by
a subsequently executed Valve (or a Filter or Servlet at the
application level) will be passed on to our caller.
If there are no more Valves to be executed, an appropriate
ServletException will be thrown by this ValveContext.
Parameters: request - The request currently being processed Parameters: response - The response currently being created exception: IOException - if thrown by a subsequent Valve, Filter, orServlet exception: ServletException - if thrown by a subsequent Valve, Filter,or Servlet exception: ServletException - if there are no further Valves configured in the Pipeline currently being processed |
|
|