Uses of Class
org.apache.wicket.request.cycle.RequestCycle
-
Packages that use RequestCycle Package Description org.apache.wicket The core Wicket package.org.apache.wicket.ajax org.apache.wicket.feedback Classes related to showing user feedback, generally as the result of form submission and/or validation.org.apache.wicket.markup.html.internal org.apache.wicket.markup.html.pages Default special purpose pages for error and feedback support.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.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 Modifier and Type Method Description RequestCycleApplication. createRequestCycle(org.apache.wicket.request.Request request, org.apache.wicket.request.Response response)RequestCycleComponent. getRequestCycle()Gets the active request cycle for this componentstatic RequestCycleThreadContext. getRequestCycle()Methods in org.apache.wicket with parameters of type RequestCycle Modifier and Type Method Description SessionApplication. fetchCreateAndSetSession(RequestCycle requestCycle)static voidThreadContext. setRequestCycle(RequestCycle requestCycle)Binds theRequestCycleto current thread. -
Uses of RequestCycle in org.apache.wicket.ajax
Methods in org.apache.wicket.ajax with parameters of type RequestCycle Modifier and Type Method Description protected WebClientInfoAjaxClientInfoBehavior. newWebClientInfo(RequestCycle requestCycle) -
Uses of RequestCycle in org.apache.wicket.feedback
Methods in org.apache.wicket.feedback with parameters of type RequestCycle Modifier and Type Method Description static java.util.Optional<FeedbackDelay>FeedbackDelay. get(RequestCycle cycle)Get the current delay.Constructors in org.apache.wicket.feedback with parameters of type RequestCycle Constructor Description FeedbackDelay(RequestCycle cycle)Delay all feedbacks for the given cycle. -
Uses of RequestCycle in org.apache.wicket.markup.html.internal
Constructors in org.apache.wicket.markup.html.internal with parameters of type RequestCycle Constructor Description ResponseBufferZone(RequestCycle cycle, MarkupStream stream) -
Uses of RequestCycle in org.apache.wicket.markup.html.pages
Methods in org.apache.wicket.markup.html.pages with parameters of type RequestCycle Modifier and Type Method Description protected WebClientInfoBrowserInfoPage. newWebClientInfo(RequestCycle requestCycle) -
Uses of RequestCycle in org.apache.wicket.protocol.http
Methods in org.apache.wicket.protocol.http with parameters of type RequestCycle Modifier and Type Method Description voidCsrfPreventionRequestCycleListener. onBeginRequest(RequestCycle cycle)voidRequestLoggerRequestCycleListener. onBeginRequest(RequestCycle cycle)voidRequestLoggerRequestCycleListener. onEndRequest(RequestCycle cycle)voidRequestLoggerRequestCycleListener. onExceptionRequestHandlerResolved(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler, java.lang.Exception exception)voidCsrfPreventionRequestCycleListener. onRequestHandlerResolved(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler)voidRequestLoggerRequestCycleListener. onRequestHandlerResolved(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler)voidRequestLoggerRequestCycleListener. onRequestHandlerScheduled(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler)protected booleanWicketFilter. processRequestCycle(RequestCycle requestCycle, org.apache.wicket.request.http.WebResponse webResponse, javax.servlet.http.HttpServletRequest httpServletRequest, javax.servlet.http.HttpServletResponse httpServletResponse, javax.servlet.FilterChain chain)Process the request cycle -
Uses of RequestCycle in org.apache.wicket.protocol.http.request
Methods in org.apache.wicket.protocol.http.request with parameters of type RequestCycle Modifier and Type Method Description protected java.lang.StringWebClientInfo. getRemoteAddr(RequestCycle requestCycle)When using ProxyPass, requestCycle().getHttpServletRequest().Constructors in org.apache.wicket.protocol.http.request with parameters of type RequestCycle Constructor Description WebClientInfo(RequestCycle requestCycle)Construct.WebClientInfo(RequestCycle requestCycle, java.lang.String userAgent)Construct.WebClientInfo(RequestCycle requestCycle, java.lang.String userAgent, ClientProperties properties)Construct.WebClientInfo(RequestCycle requestCycle, ClientProperties properties)Construct. -
Uses of RequestCycle in org.apache.wicket.request.cycle
Methods in org.apache.wicket.request.cycle that return RequestCycle Modifier and Type Method Description static RequestCycleRequestCycle. get()Returns request cycle associated with current thread.<T> RequestCycleRequestCycle. setMetaData(MetaDataKey<T> key, T object)Sets the metadata for this request cycle using the given key.Methods in org.apache.wicket.request.cycle with parameters of type RequestCycle Modifier and Type Method Description static IPageRequestHandlerPageRequestHandlerTracker. getFirstHandler(RequestCycle cycle)retrieves first handler from the request cyclestatic IPageRequestHandlerPageRequestHandlerTracker. getLastHandler(RequestCycle cycle)retrieves last handler from request cycledefault voidIRequestCycleListener. onBeginRequest(RequestCycle cycle)Called when the request cycle object is beginning its responsevoidRequestCycleListenerCollection. onBeginRequest(RequestCycle cycle)Notifies all registered listeners of the onBeginRequest event in first in first out order, i.e.default voidIRequestCycleListener. onDetach(RequestCycle cycle)Called after the request cycle has been detachedvoidRequestCycleListenerCollection. onDetach(RequestCycle cycle)Notifies all registered listeners of theonDetachevent in first in last out order (i.e.default voidIRequestCycleListener. onEndRequest(RequestCycle cycle)Called when the request cycle object has finished its responsevoidRequestCycleListenerCollection. onEndRequest(RequestCycle cycle)Notifies all registered listeners of theonEndRequestevent in first in last out order (i.e.default org.apache.wicket.request.IRequestHandlerIRequestCycleListener. onException(RequestCycle cycle, java.lang.Exception ex)Called when there is an exception in the request cycle that would normally be handled byhandleException(Exception)Note that in the event of an exception,IRequestCycleListener.onEndRequest(RequestCycle)will still be called after these listeners haveIRequestCycleListener.onException(RequestCycle, Exception)calledorg.apache.wicket.request.IRequestHandlerRequestCycleListenerCollection. onException(RequestCycle cycle, java.lang.Exception ex)Notifies all registered listeners of the exception and calls the first handler that was returned by the listeners.default voidIRequestCycleListener. onExceptionRequestHandlerResolved(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler, java.lang.Exception exception)Called when anIRequestHandleris resolved for an exception and will be executed.voidRequestCycleListenerCollection. onExceptionRequestHandlerResolved(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler, java.lang.Exception exception)default voidIRequestCycleListener. onRequestHandlerExecuted(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler)Called after anIRequestHandlerhas been executed.voidRequestCycleListenerCollection. onRequestHandlerExecuted(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler)default voidIRequestCycleListener. onRequestHandlerResolved(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler)Called when anIRequestHandleris resolved and will be executed.voidPageRequestHandlerTracker. onRequestHandlerResolved(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler)voidRequestCycleListenerCollection. onRequestHandlerResolved(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler)default voidIRequestCycleListener. onRequestHandlerScheduled(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler)Called when aIRequestHandlerhas been scheduled.voidRequestCycleListenerCollection. onRequestHandlerScheduled(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler)default voidIRequestCycleListener. onUrlMapped(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler, org.apache.wicket.request.Url url)Called after a Url is generated for aIRequestHandler.voidRequestCycleListenerCollection. onUrlMapped(RequestCycle cycle, org.apache.wicket.request.IRequestHandler handler, org.apache.wicket.request.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 Modifier and Type Method Description protected booleanWebPageRenderer. isAjax(RequestCycle requestCycle)protected voidWebPageRenderer. redirectTo(org.apache.wicket.request.Url url, RequestCycle requestCycle)protected BufferedWebResponseWebPageRenderer. renderPage(org.apache.wicket.request.Url targetUrl, RequestCycle requestCycle)Renders page to aBufferedWebResponse.abstract voidPageRenderer. respond(RequestCycle requestCycle)Render the response using giveRequestCycle.voidWebPageRenderer. respond(RequestCycle requestCycle)protected booleanWebPageRenderer. shouldPreserveClientUrl(RequestCycle requestCycle)protected booleanWebPageRenderer. shouldRedirectToTargetUrl(RequestCycle cycle, org.apache.wicket.request.Url currentUrl, org.apache.wicket.request.Url targetUrl)Should the client be redirected to target url.protected booleanWebPageRenderer. shouldRenderPageAndWriteResponse(RequestCycle cycle, org.apache.wicket.request.Url currentUrl, org.apache.wicket.request.Url targetUrl)Should the page be rendered immediately. -
Uses of RequestCycle in org.apache.wicket.util.tester
Methods in org.apache.wicket.util.tester that return RequestCycle Modifier and Type Method Description RequestCycleBaseWicketTester. getRequestCycle()
-