Uses of Class
org.apache.wicket.Request

Packages that use Request
org.apache.wicket The core Wicket package. 
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.protocol.http.servlet Java Servlet specific implementation of Wicket http classes. 
org.apache.wicket.request Package for classes that have generic (protocol independent) support for request cycle processing. 
org.apache.wicket.session   
 

Uses of Request in org.apache.wicket
 

Fields in org.apache.wicket declared as Request
protected  Request RequestCycle.request
          The current request.
 

Methods in org.apache.wicket that return Request
 Request Component.getRequest()
           
 Request RequestCycle.getRequest()
          Gets the request.
 

Methods in org.apache.wicket with parameters of type Request
static Session Session.findOrCreate(Request request, Response response)
           
 RequestCycle Application.newRequestCycle(Application application, Request request, Response response)
          Deprecated. Applications wishing to provide custom request cycles should override method Application.newRequestCycle(Request, Response)
abstract  RequestCycle Application.newRequestCycle(Request request, Response response)
          Creates a new RequestCycle object.
abstract  Session Application.newSession(Request request, Response response)
          Creates a new session.
 void RequestCycle.setRequest(Request request)
           
 

Constructors in org.apache.wicket with parameters of type Request
RequestCycle(Application application, Request request, Response response)
          Constructor.
Session(Application application, Request request)
          Deprecated. Use #Session(Request)
Session(Request request)
          Constructor.
 

Uses of Request in org.apache.wicket.protocol.http
 

Subclasses of Request in org.apache.wicket.protocol.http
 class WebRequest
          Subclass of Request for HTTP protocol requests which holds an underlying HttpServletRequest object.
 

Methods in org.apache.wicket.protocol.http with parameters of type Request
 void AbstractHttpSessionStore.bind(Request request, Session newSession)
           
 java.lang.Object HttpSessionStore.getAttribute(Request request, java.lang.String name)
           
 java.util.List HttpSessionStore.getAttributeNames(Request request)
           
 java.lang.String AbstractHttpSessionStore.getSessionId(Request request, boolean create)
           
 void AbstractHttpSessionStore.invalidate(Request request)
           
 Session AbstractHttpSessionStore.lookup(Request request)
           
 RequestCycle WebApplication.newRequestCycle(Request request, Response response)
           
 Session WebApplication.newSession(Request request)
          Deprecated. WebApplication.newSession(Request, Response).
 Session WebApplication.newSession(Request request, Response response)
           
 void AbstractHttpSessionStore.onBeginRequest(Request request)
          Noop implementation.
protected  void AbstractHttpSessionStore.onBind(Request request, Session newSession)
          Template method that is called when a session is being bound to the session store.
 void AbstractHttpSessionStore.onEndRequest(Request request)
          Noop implementation.
 void SecondLevelCacheSessionStore.onEndRequest(Request request)
           
 void HttpSessionStore.removeAttribute(Request request, java.lang.String name)
           
 void HttpSessionStore.setAttribute(Request request, java.lang.String name, java.lang.Object value)
           
 void SecondLevelCacheSessionStore.setAttribute(Request request, java.lang.String name, java.lang.Object value)
           
protected  WebRequest AbstractHttpSessionStore.toWebRequest(Request request)
          Cast Request to WebRequest.
 

Constructors in org.apache.wicket.protocol.http with parameters of type Request
WebSession(Application application, Request request)
          Deprecated. Use #WebSession(Request) instead
WebSession(Request request)
          Constructor.
WebSession(WebApplication application, Request request)
          Deprecated. Use #WebSession(Request)
 

Uses of Request in org.apache.wicket.protocol.http.request
 

Methods in org.apache.wicket.protocol.http.request with parameters of type Request
protected  void WebRequestCodingStrategy.addBookmarkablePageParameters(Request request, RequestParameters parameters)
          Adds bookmarkable page related parameters (page alias and optionally page parameters).
protected  void WebRequestCodingStrategy.addInterfaceParameters(Request request, RequestParameters parameters)
          Adds page related parameters (path and pagemap and optionally version and interface).
protected  void WebRequestCodingStrategy.addResourceParameters(Request request, RequestParameters parameters)
          Adds (shared) resource related parameters (resource key).
 RequestParameters CryptedUrlWebRequestCodingStrategy.decode(Request request)
          Decode the querystring of the URL
 RequestParameters WebRequestCodingStrategy.decode(Request request)
           
protected  java.lang.String WebRequestCodingStrategy.getRequestPath(Request request)
          Gets the request info path.
 

Uses of Request in org.apache.wicket.protocol.http.servlet
 

Subclasses of Request in org.apache.wicket.protocol.http.servlet
 class MultipartServletWebRequest
          Servlet specific WebRequest subclass for multipart content uploads.
 class ServletWebRequest
          A Servlet specific WebRequest implementation wrapping a HttpServletRequest
 

Uses of Request in org.apache.wicket.request
 

Methods in org.apache.wicket.request with parameters of type Request
 RequestParameters IRequestCodingStrategy.decode(Request request)
          Analyze the request and create a corresponding request parameters object for it.
 

Uses of Request in org.apache.wicket.session
 

Methods in org.apache.wicket.session with parameters of type Request
 void ISessionStore.bind(Request request, Session newSession)
          Adds the provided new session to this facade using the provided request.
 java.lang.Object ISessionStore.getAttribute(Request request, java.lang.String name)
          Gets the attribute value with the given name
 java.util.List ISessionStore.getAttributeNames(Request request)
           
 java.lang.String ISessionStore.getSessionId(Request request, boolean create)
          Get the session id for the provided request.
 void ISessionStore.invalidate(Request request)
          Invalidates the session.
 Session ISessionStore.lookup(Request request)
          Retrieves the session for the provided request from this facade.
 void ISessionStore.onBeginRequest(Request request)
          Called at the start of a request.
 void ISessionStore.onEndRequest(Request request)
          Called at the end of a request.
 void ISessionStore.removeAttribute(Request request, java.lang.String name)
          Removes the attribute with the given name.
 void ISessionStore.setAttribute(Request request, java.lang.String name, java.lang.Object value)
          Adds or replaces the attribute with the given name and value.
 



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