Uses of Class
org.apache.wicket.Session

Packages that use Session
org.apache.wicket The core Wicket package. 
org.apache.wicket.authroles.authentication   
org.apache.wicket.devutils.inspector Classes that make debugging Wicket HTML applications easier. 
org.apache.wicket.examples.authentication1   
org.apache.wicket.examples.authentication2   
org.apache.wicket.examples.authentication3   
org.apache.wicket.examples.authorization   
org.apache.wicket.examples.forminput   
org.apache.wicket.examples.hangman   
org.apache.wicket.examples.library   
org.apache.wicket.mock   
org.apache.wicket.protocol.http HTTP implementation. 
org.apache.wicket.session   
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 Session in org.apache.wicket
 

Methods in org.apache.wicket that return Session
 Session Application.fetchCreateAndSetSession(RequestCycle requestCycle)
           
static Session Session.get()
          Returns session associated to current thread.
static Session ThreadContext.getSession()
           
 Session Component.getSession()
          Gets the current Session object.
abstract  Session Application.newSession(Request request, Response response)
          Creates a new session.
 Session Session.setStyle(java.lang.String style)
          Set the style (see Session).
 

Methods in org.apache.wicket with parameters of type Session
static void ThreadContext.setSession(Session session)
          Binds the session to current thread.
 

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

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

Methods in org.apache.wicket.authroles.authentication that return Session
 Session AuthenticatedWebApplication.newSession(Request request, Response response)
          Creates a new session.
 

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

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

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

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

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

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

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

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

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

Subclasses of Session in org.apache.wicket.examples.authentication3
 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.mock
 

Methods in org.apache.wicket.mock that return Session
 Session MockApplication.getSession()
           
 Session MockSessionStore.lookup(Request request)
           
 

Methods in org.apache.wicket.mock with parameters of type Session
 void MockSessionStore.bind(Request request, Session newSession)
           
 void MockSessionStore.flushSession(Request request, Session session)
           
 

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 WebApplication.newSession(Request request, Response response)
           
 

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.
 Session HttpSessionStore.lookup(Request request)
           
 

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.
 void HttpSessionStore.bind(Request request, Session newSession)
           
 void ISessionStore.flushSession(Request request, Session session)
          Flushes the session.
 void HttpSessionStore.flushSession(Request request, Session session)
           
protected  void HttpSessionStore.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.util.tester
 

Methods in org.apache.wicket.util.tester that return Session
 Session BaseWicketTester.getSession()
           
 



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