Uses of Class
org.apache.wicket.Request

Packages that use Request
org.apache.wicket The core Wicket package. 
org.apache.wicket.authentication   
org.apache.wicket.examples   
org.apache.wicket.examples.authentication   
org.apache.wicket.examples.authorization   
org.apache.wicket.examples.forminput   
org.apache.wicket.examples.hangman   
org.apache.wicket.examples.library   
org.apache.wicket.examples.signin   
org.apache.wicket.examples.signin2   
org.apache.wicket.extensions.ajax.markup.html.form.upload   
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   
org.apache.wicket.util.string String utilities. 
 

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 RequestCycle.getRequest()
          Gets the request.
 Request Component.getRequest()
           
 

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.authentication
 

Methods in org.apache.wicket.authentication with parameters of type Request
 Session AuthenticatedWebApplication.newSession(Request request, Response response)
           
 

Constructors in org.apache.wicket.authentication with parameters of type Request
AuthenticatedWebSession(AuthenticatedWebApplication application, Request request)
          Deprecated. Use AuthenticatedWebSession.AuthenticatedWebSession(Request)
AuthenticatedWebSession(Request request)
          Construct.
 

Uses of Request in org.apache.wicket.examples
 

Methods in org.apache.wicket.examples with parameters of type Request
 RequestCycle WicketExampleApplication.newRequestCycle(Request request, Response response)
           
 

Uses of Request in org.apache.wicket.examples.authentication
 

Constructors in org.apache.wicket.examples.authentication with parameters of type Request
MyAuthenticatedWebSession(Request request)
          Construct.
 

Uses of Request in org.apache.wicket.examples.authorization
 

Methods in org.apache.wicket.examples.authorization with parameters of type Request
 Session RolesApplication.newSession(Request request, Response response)
           
 

Constructors in org.apache.wicket.examples.authorization with parameters of type Request
RolesSession(Request request)
          Construct.
 

Uses of Request in org.apache.wicket.examples.forminput
 

Methods in org.apache.wicket.examples.forminput with parameters of type Request
 Session FormInputApplication.newSession(Request request, Response response)
           
 

Uses of Request in org.apache.wicket.examples.hangman
 

Methods in org.apache.wicket.examples.hangman with parameters of type Request
 Session HangmanApplication.newSession(Request request, Response response)
           
 

Constructors in org.apache.wicket.examples.hangman with parameters of type Request
HangmanSession(Request request)
          Constructor
 

Uses of Request in org.apache.wicket.examples.library
 

Methods in org.apache.wicket.examples.library with parameters of type Request
 Session LibraryApplication.newSession(Request request, Response response)
           
 

Constructors in org.apache.wicket.examples.library with parameters of type Request
LibrarySession(Request request)
          Constructor
 

Uses of Request in org.apache.wicket.examples.signin
 

Methods in org.apache.wicket.examples.signin with parameters of type Request
 Session SignInApplication.newSession(Request request, Response response)
           
 

Constructors in org.apache.wicket.examples.signin with parameters of type Request
SignInSession(Request request)
          Constructor
 

Uses of Request in org.apache.wicket.examples.signin2
 

Methods in org.apache.wicket.examples.signin2 with parameters of type Request
 Session SignIn2Application.newSession(Request request, Response response)
           
 

Constructors in org.apache.wicket.examples.signin2 with parameters of type Request
SignIn2Session(Request request)
          Constructor
 

Uses of Request in org.apache.wicket.extensions.ajax.markup.html.form.upload
 

Subclasses of Request in org.apache.wicket.extensions.ajax.markup.html.form.upload
 class UploadWebRequest
          A request object that stores information about the current upload in session so it is accessible to the UploadProgressBar.
 

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)
           
 Object HttpSessionStore.getAttribute(Request request, String name)
           
 List<String> HttpSessionStore.getAttributeNames(Request request)
           
 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 SecondLevelCacheSessionStore.onEndRequest(Request request)
           
 void AbstractHttpSessionStore.onEndRequest(Request request)
          Noop implementation.
 void HttpSessionStore.removeAttribute(Request request, String name)
           
 void SecondLevelCacheSessionStore.setAttribute(Request request, String name, Object value)
           
 void HttpSessionStore.setAttribute(Request request, String name, 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 WebRequestCodingStrategy.decode(Request request)
           
 RequestParameters CryptedUrlWebRequestCodingStrategy.decode(Request request)
          Decode the querystring of the URL
protected  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.
 Object ISessionStore.getAttribute(Request request, String name)
          Gets the attribute value with the given name
 List<String> ISessionStore.getAttributeNames(Request request)
           
 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, String name)
          Removes the attribute with the given name.
 void ISessionStore.setAttribute(Request request, String name, Object value)
          Adds or replaces the attribute with the given name and value.
 

Uses of Request in org.apache.wicket.util.string
 

Methods in org.apache.wicket.util.string with parameters of type Request
static String UrlUtils.rewriteToContextRelative(String url, Request request)
          Rewrites a relative url to be context relative, leaves absolute urls same.
 



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