| java.lang.Object wicket.RequestCycle wicket.protocol.http.WebRequestCycle
WebRequestCycle | public class WebRequestCycle extends RequestCycle (Code) | | RequestCycle implementation for HTTP protocol. Holds the application,
session, request and response objects for a given HTTP request. Contains
methods (urlFor*) which yield a URL for bookmarkable pages as well as
non-bookmarkable component interfaces. The protected handleRender method is
the internal entrypoint which takes care of the details of rendering a
response to an HTTP request.
See Also: RequestCycle author: Jonathan Locke author: Johan Compagner author: Gili Tzabari author: Eelco Hillenius |
WebRequestCycle | public WebRequestCycle(WebSession session, WebRequest request, Response response)(Code) | | Constructor which simply passes arguments to superclass for storage
there.
Parameters: session - The session Parameters: request - The request Parameters: response - The response |
redirectTo | final public void redirectTo(Page page)(Code) | | Redirects browser to the given page. NOTE: Usually, you should never call
this method directly, but work with setResponsePage instead. This method
is part of Wicket's internal behavior and should only be used when you
want to circumvent the normal framework behavior and issue the redirect
directly.
Parameters: page - The page to redirect to |
|
|