| java.lang.Object org.apache.cactus.server.RequestDispatcherWrapper
RequestDispatcherWrapper | public class RequestDispatcherWrapper implements RequestDispatcher(Code) | | Wrapper around RequestDispatcher which overrides the
forward() and include methods to use the original
HTTP request object instead of the simulated one used by Cactus.
version: $Id: RequestDispatcherWrapper.java 238991 2004-05-22 11:34:50Z vmassol $ |
Method Summary | |
public void | forward(ServletRequest theRequest, ServletResponse theResponse) Call the original RequestDispatcher forward()
method but with the original HTTP request (not the simulation one which
would make the servlet engine choke !). | public void | include(ServletRequest theRequest, ServletResponse theResponse) Call the original RequestDispatcher include()
method but with the original HTTP request (not the simulation one which
would make the servlet engine choke !). |
RequestDispatcherWrapper | public RequestDispatcherWrapper(RequestDispatcher theOriginalDispatcher)(Code) | | Parameters: theOriginalDispatcher - the original request dispatcher object |
|
|