Uses of Class
org.apache.wicket.request.cycle.RequestCycle

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.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 abstract  void AbstractAutoCompleteBehavior.onRequest(String input, RequestCycle requestCycle)
          Callback for the ajax event generated by the javascript.
protected  void AutoCompleteBehavior.onRequest(String val, RequestCycle requestCycle)
           
 

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.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.
protected  RequestCycle RequestCycle.getRequestCycle()
           
 

Methods in org.apache.wicket.request.cycle with parameters of type RequestCycle
 void AbstractRequestCycleListener.onBeginRequest(RequestCycle cycle)
           
 void IRequestCycleListener.onBeginRequest(RequestCycle cycle)
          Called when the request cycle object is beginning its response
 void RequestCycleListenerCollection.onBeginRequest(RequestCycle cycle)
           
 void AbstractRequestCycleListener.onDetach(RequestCycle cycle)
           
 void IRequestCycleListener.onDetach(RequestCycle cycle)
          Called after the request cycle has been detached
 void RequestCycleListenerCollection.onDetach(RequestCycle cycle)
           
 void AbstractRequestCycleListener.onEndRequest(RequestCycle cycle)
           
 void IRequestCycleListener.onEndRequest(RequestCycle cycle)
          Called when the request cycle object has finished its response
 void RequestCycleListenerCollection.onEndRequest(RequestCycle cycle)
           
 void AbstractRequestCycleListener.onException(RequestCycle cycle, Exception ex)
           
 void 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
 void RequestCycleListenerCollection.onException(RequestCycle cycle, Exception ex)
           
 

Uses of RequestCycle in org.apache.wicket.request.handler.render
 

Methods in org.apache.wicket.request.handler.render with parameters of type RequestCycle
protected  BufferedWebResponse WebPageRenderer.renderPage(Url targetUrl, RequestCycle requestCycle)
          Renders page to a BufferedWebResponse.
 void WebPageRenderer.respond(RequestCycle requestCycle)
           
abstract  void PageRenderer.respond(RequestCycle requestCycle)
          Render the response using give 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()
           
 



Copyright © 2004-2010 Apache Software Foundation. All Rights Reserved.