| java.lang.Object org.apache.beehive.netui.pageflow.scoping.internal.ScopedRequestDispatcher
ScopedRequestDispatcher | public class ScopedRequestDispatcher implements RequestDispatcher(Code) | | A request dispatcher that doesn't actually forward (but keeps track of the attempted
forward), and which does some extra work to do server includes into our ScopedRequest
and ScopedResponse.
See Also: ScopedRequestImpl See Also: ScopedResponseImpl |
Method Summary | |
public void | forward(ServletRequest request, ServletResponse response) Does not actually cause a server forward of the request, but informs the ScopedRequest
object that a forward was attempted for a particular URI. | public void | include(ServletRequest request, ServletResponse response) Does a server include of the stored URI into the given ScopedRequest and ScopedResponse. |
ScopedRequestDispatcher | public ScopedRequestDispatcher(String uri)(Code) | | Constructor.
Parameters: uri - the URI to which we'll "forward" or include. |
forward | public void forward(ServletRequest request, ServletResponse response) throws ServletException, IOException(Code) | | Does not actually cause a server forward of the request, but informs the ScopedRequest
object that a forward was attempted for a particular URI.
Parameters: request - the ScopedRequest, or a wrapper (ServletRequestWrapper) around it. Parameters: response - the ScopedResponse, or a wrapper (ServletResponseWrapper) around it. |
include | public void include(ServletRequest request, ServletResponse response) throws ServletException, IOException(Code) | | Does a server include of the stored URI into the given ScopedRequest and ScopedResponse.
Parameters: request - the ScopedRequest, or a wrapper (ServletRequestWrapper) around it. Parameters: response - the ScopedResponse, or a wrapper (ServletResponseWrapper) around it. |
|
|