Uses of Class
org.apache.wicket.Session

Packages that use Session
org.apache.wicket The core Wicket package. 
org.apache.wicket.authentication   
org.apache.wicket.devutils.inspector Classes that make debugging Wicket HTML applications easier. 
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.protocol.http HTTP implementation. 
org.apache.wicket.session   
 

Uses of Session in org.apache.wicket
 

Methods in org.apache.wicket that return Session
static Session Session.findOrCreate()
          Locate the session for the client of this request in the ISessionStore or create a new one and attach it when none could be located and sets it as the current instance for this thread.
static Session Session.findOrCreate(Request request, Response response)
           
static Session Session.get()
          Get the session for the calling thread.
 Session RequestCycle.getSession()
          Gets the session.
 Session PageMap.getSession()
           
 Session Component.getSession()
          Gets the current Session object.
abstract  Session Application.newSession(Request request, Response response)
          Creates a new session.
 Session Session.setStyle(String style)
          Set the style (see Session).
 

Methods in org.apache.wicket with parameters of type Session
static void Session.set(Session session)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 

Uses of Session in org.apache.wicket.authentication
 

Subclasses of Session in org.apache.wicket.authentication
 class AuthenticatedWebSession
          Basic authenticated web session.
 

Methods in org.apache.wicket.authentication that return Session
 Session AuthenticatedWebApplication.newSession(Request request, Response response)
           
 

Uses of Session in org.apache.wicket.devutils.inspector
 

Constructors in org.apache.wicket.devutils.inspector with parameters of type Session
SessionSizeModel(Session session)
           
SessionTotalSizeModel(Session session)
           
SessionView(String id, Session session)
          Constructor.
 

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

Subclasses of Session in org.apache.wicket.examples.authentication
 class MyAuthenticatedWebSession
          Authenticated session subclass
 

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

Subclasses of Session in org.apache.wicket.examples.authorization
 class RolesSession
          Web Session for this example.
 

Methods in org.apache.wicket.examples.authorization that return Session
 Session RolesApplication.newSession(Request request, Response response)
           
 

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

Methods in org.apache.wicket.examples.forminput that return Session
 Session FormInputApplication.newSession(Request request, Response response)
           
 

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

Subclasses of Session in org.apache.wicket.examples.hangman
 class HangmanSession
          Session for hangman game.
 

Methods in org.apache.wicket.examples.hangman that return Session
 Session HangmanApplication.newSession(Request request, Response response)
           
 

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

Subclasses of Session in org.apache.wicket.examples.library
 class LibrarySession
          Session class for library example.
 

Methods in org.apache.wicket.examples.library that return Session
 Session LibraryApplication.newSession(Request request, Response response)
           
 

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

Subclasses of Session in org.apache.wicket.examples.signin
 class SignInSession
          Session class for signin example.
 

Methods in org.apache.wicket.examples.signin that return Session
 Session SignInApplication.newSession(Request request, Response response)
           
 

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

Subclasses of Session in org.apache.wicket.examples.signin2
 class SignIn2Session
          Session class for signin example.
 

Methods in org.apache.wicket.examples.signin2 that return Session
 Session SignIn2Application.newSession(Request request, Response response)
           
 

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

Subclasses of Session in org.apache.wicket.protocol.http
 class WebSession
          A session subclass for the HTTP protocol.
 

Methods in org.apache.wicket.protocol.http that return Session
 Session AbstractHttpSessionStore.lookup(Request request)
           
 Session WebApplication.newSession()
          Deprecated. see WebApplication.newSession(Request, Response).
 Session WebApplication.newSession(Request request)
          Deprecated. WebApplication.newSession(Request, Response).
 Session WebApplication.newSession(Request request, Response response)
           
 

Methods in org.apache.wicket.protocol.http with parameters of type Session
 void AbstractHttpSessionStore.bind(Request request, Session newSession)
           
 IPageMap AbstractHttpSessionStore.createPageMap(String name, Session session)
          Deprecated. remove after deprecation release
protected  void AbstractHttpSessionStore.onBind(Request request, Session newSession)
          Template method that is called when a session is being bound to the session store.
 

Uses of Session in org.apache.wicket.session
 

Methods in org.apache.wicket.session that return Session
 Session ISessionStore.lookup(Request request)
          Retrieves the session for the provided request from this facade.
 

Methods in org.apache.wicket.session with parameters of type Session
 void ISessionStore.bind(Request request, Session newSession)
          Adds the provided new session to this facade using the provided request.
 



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