Uses of Class
org.apache.wicket.Session

Packages that use Session
org.apache.wicket The core Wicket package. 
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(String style)
          Set the style (see Session).
 

Methods in org.apache.wicket with parameters of type Session
 void SessionListenerCollection.onCreated(Session session)
           
 void ISessionListener.onCreated(Session session)
          Called when a new instance of session is created
static void ThreadContext.setSession(Session session)
          Binds the session to current thread.
 

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.BindListener.bindingSession(Request request, Session newSession)
          Informs the listener that a session is about to be bound.
 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.
 

Constructors in org.apache.wicket.session with parameters of type Session
HttpSessionStore.SessionBindingListener(String applicationKey, Session wicketSession)
          Construct.
 

Uses of Session in org.apache.wicket.util.tester
 

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



Copyright © 2006–2015 Apache Software Foundation. All rights reserved.