|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RequestCycle | |
---|---|
org.apache.wicket | The core Wicket package. |
org.apache.wicket.examples | |
org.apache.wicket.extensions.ajax.markup.html.autocomplete | |
org.apache.wicket.extensions.util.encoding | Encoding extensions. |
org.apache.wicket.markup.html.internal | |
org.apache.wicket.protocol.http | HTTP implementation. |
org.apache.wicket.protocol.http.request | This package contains http (web) protocol dependent implementations of request processing strategies. |
org.apache.wicket.request.cycle | |
org.apache.wicket.request.handler.render | |
org.apache.wicket.util.string | String utilities. |
org.apache.wicket.util.tester | A package with utility classes to ease unit testing of Wicket applications without the need for a servlet container. |
Uses of RequestCycle in org.apache.wicket |
---|
Methods in org.apache.wicket that return RequestCycle | |
---|---|
RequestCycle |
Application.createRequestCycle(Request request,
Response response)
|
RequestCycle |
Component.getRequestCycle()
Gets the active request cycle for this component |
static RequestCycle |
ThreadContext.getRequestCycle()
|
Methods in org.apache.wicket with parameters of type RequestCycle | |
---|---|
Session |
Application.fetchCreateAndSetSession(RequestCycle requestCycle)
|
protected boolean |
Session.isCurrentRequestValid(RequestCycle lockedRequestCycle)
When a regular request on certain page with certain version is being processed, we don't allow ajax requests to same page and version. |
static void |
ThreadContext.setRequestCycle(RequestCycle requestCycle)
Binds the RequestCycle to current thread. |
Uses of RequestCycle in org.apache.wicket.examples |
---|
Subclasses of RequestCycle in org.apache.wicket.examples | |
---|---|
class |
WicketExampleRequestCycle
Handles the PageExpiredException so that the SourcesPage can recover from a session expired. |
Uses of RequestCycle in org.apache.wicket.extensions.ajax.markup.html.autocomplete |
---|
Methods in org.apache.wicket.extensions.ajax.markup.html.autocomplete with parameters of type RequestCycle | |
---|---|
protected void |
AutoCompleteBehavior.onRequest(String val,
RequestCycle requestCycle)
|
protected abstract void |
AbstractAutoCompleteBehavior.onRequest(String input,
RequestCycle requestCycle)
Callback for the ajax event generated by the javascript. |
Uses of RequestCycle in org.apache.wicket.extensions.util.encoding |
---|
Methods in org.apache.wicket.extensions.util.encoding with parameters of type RequestCycle | |
---|---|
static String |
CharSetUtil.getEncoding(RequestCycle cycle)
Based on the Session's locale determine the associated character encoding. |
Uses of RequestCycle in org.apache.wicket.markup.html.internal |
---|
Constructors in org.apache.wicket.markup.html.internal with parameters of type RequestCycle | |
---|---|
ResponseBufferZone(RequestCycle cycle,
MarkupStream stream)
|
Uses of RequestCycle in org.apache.wicket.protocol.http |
---|
Methods in org.apache.wicket.protocol.http with parameters of type RequestCycle | |
---|---|
void |
RequestLoggerRequestCycleListener.onBeginRequest(RequestCycle cycle)
|
void |
RequestLoggerRequestCycleListener.onEndRequest(RequestCycle cycle)
|
void |
RequestLoggerRequestCycleListener.onExceptionRequestHandlerResolved(RequestCycle cycle,
IRequestHandler handler,
Exception exception)
|
void |
RequestLoggerRequestCycleListener.onRequestHandlerResolved(RequestCycle cycle,
IRequestHandler handler)
|
void |
RequestLoggerRequestCycleListener.onRequestHandlerScheduled(RequestCycle cycle,
IRequestHandler handler)
|
Uses of RequestCycle in org.apache.wicket.protocol.http.request |
---|
Methods in org.apache.wicket.protocol.http.request with parameters of type RequestCycle | |
---|---|
protected String |
WebClientInfo.getRemoteAddr(RequestCycle requestCycle)
When using ProxyPass, requestCycle().getHttpServletRequest(). |
Constructors in org.apache.wicket.protocol.http.request with parameters of type RequestCycle | |
---|---|
WebClientInfo(RequestCycle requestCycle)
Construct. |
|
WebClientInfo(RequestCycle requestCycle,
String userAgent)
Construct. |
Uses of RequestCycle in org.apache.wicket.request.cycle |
---|
Methods in org.apache.wicket.request.cycle that return RequestCycle | |
---|---|
static RequestCycle |
RequestCycle.get()
Returns request cycle associated with current thread. |
Methods in org.apache.wicket.request.cycle with parameters of type RequestCycle | |
---|---|
static IPageRequestHandler |
PageRequestHandlerTracker.getFirstHandler(RequestCycle cycle)
retrieves first handler from the request cycle |
static IPageRequestHandler |
PageRequestHandlerTracker.getLastHandler(RequestCycle cycle)
retrieves last handler from requestcycle |
void |
RequestCycleListenerCollection.onBeginRequest(RequestCycle cycle)
Notifies all registered listeners of the onBeginRequest event in first in first out order, i.e. |
void |
IRequestCycleListener.onBeginRequest(RequestCycle cycle)
Called when the request cycle object is beginning its response |
void |
AbstractRequestCycleListener.onBeginRequest(RequestCycle cycle)
|
void |
RequestCycleListenerCollection.onDetach(RequestCycle cycle)
Notifies all registered listeners of the onDetach event in first in last out order
(i.e. |
void |
IRequestCycleListener.onDetach(RequestCycle cycle)
Called after the request cycle has been detached |
void |
AbstractRequestCycleListener.onDetach(RequestCycle cycle)
|
void |
RequestCycleListenerCollection.onEndRequest(RequestCycle cycle)
Notifies all registered listeners of the onEndRequest event in first in last out
order (i.e. |
void |
IRequestCycleListener.onEndRequest(RequestCycle cycle)
Called when the request cycle object has finished its response |
void |
AbstractRequestCycleListener.onEndRequest(RequestCycle cycle)
|
IRequestHandler |
RequestCycleListenerCollection.onException(RequestCycle cycle,
Exception ex)
Notifies all registered listeners of the exception and calls the first handler that was returned by the listeners. |
IRequestHandler |
IRequestCycleListener.onException(RequestCycle cycle,
Exception ex)
Called when there is an exception in the request cycle that would normally be handled by handleException(Exception)
Note that in the event of an exception, #onEndRequest() will still be called after
these listeners have #onException(Exception) called |
IRequestHandler |
AbstractRequestCycleListener.onException(RequestCycle cycle,
Exception ex)
|
void |
RequestCycleListenerCollection.onExceptionRequestHandlerResolved(RequestCycle cycle,
IRequestHandler handler,
Exception exception)
|
void |
IRequestCycleListener.onExceptionRequestHandlerResolved(RequestCycle cycle,
IRequestHandler handler,
Exception exception)
Called when an IRequestHandler is resolved for an exception and will be executed. |
void |
AbstractRequestCycleListener.onExceptionRequestHandlerResolved(RequestCycle cycle,
IRequestHandler handler,
Exception exception)
|
void |
RequestCycleListenerCollection.onRequestHandlerExecuted(RequestCycle cycle,
IRequestHandler handler)
|
void |
IRequestCycleListener.onRequestHandlerExecuted(RequestCycle cycle,
IRequestHandler handler)
Called after an IRequestHandler has been executed. |
void |
AbstractRequestCycleListener.onRequestHandlerExecuted(RequestCycle cycle,
IRequestHandler handler)
|
void |
RequestCycleListenerCollection.onRequestHandlerResolved(RequestCycle cycle,
IRequestHandler handler)
|
void |
IRequestCycleListener.onRequestHandlerResolved(RequestCycle cycle,
IRequestHandler handler)
Called when an IRequestHandler is resolved and will be executed. |
void |
AbstractRequestCycleListener.onRequestHandlerResolved(RequestCycle cycle,
IRequestHandler handler)
|
void |
PageRequestHandlerTracker.onRequestHandlerResolved(RequestCycle cycle,
IRequestHandler handler)
|
void |
RequestCycleListenerCollection.onRequestHandlerScheduled(RequestCycle cycle,
IRequestHandler handler)
|
void |
IRequestCycleListener.onRequestHandlerScheduled(RequestCycle cycle,
IRequestHandler handler)
Called when a IRequestHandler has been scheduled. |
void |
AbstractRequestCycleListener.onRequestHandlerScheduled(RequestCycle cycle,
IRequestHandler handler)
|
void |
PageRequestHandlerTracker.onRequestHandlerScheduled(RequestCycle cycle,
IRequestHandler handler)
|
void |
RequestCycleListenerCollection.onUrlMapped(RequestCycle cycle,
IRequestHandler handler,
Url url)
|
void |
IRequestCycleListener.onUrlMapped(RequestCycle cycle,
IRequestHandler handler,
Url url)
Called after a Url is generated for a IRequestHandler . |
void |
AbstractRequestCycleListener.onUrlMapped(RequestCycle cycle,
IRequestHandler handler,
Url url)
|
Uses of RequestCycle in org.apache.wicket.request.handler.render |
---|
Methods in org.apache.wicket.request.handler.render with parameters of type RequestCycle | |
---|---|
protected void |
WebPageRenderer.redirectTo(Url url,
RequestCycle requestCycle)
|
protected BufferedWebResponse |
WebPageRenderer.renderPage(Url targetUrl,
RequestCycle requestCycle)
Renders page to a BufferedWebResponse . |
abstract void |
PageRenderer.respond(RequestCycle requestCycle)
Render the response using give RequestCycle . |
void |
WebPageRenderer.respond(RequestCycle requestCycle)
|
Uses of RequestCycle in org.apache.wicket.util.string |
---|
Methods in org.apache.wicket.util.string with parameters of type RequestCycle | |
---|---|
static String |
UrlUtils.rewriteToContextRelative(String url,
RequestCycle requestCycle)
Rewrites a relative url to be context relative, leaves absolute urls same. |
Uses of RequestCycle in org.apache.wicket.util.tester |
---|
Methods in org.apache.wicket.util.tester that return RequestCycle | |
---|---|
RequestCycle |
BaseWicketTester.getRequestCycle()
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |