Uses of Class
wicket.Session

Packages that use Session
wicket The core Wicket package. 
wicket.protocol.http HTTP implementation. 
wicket.protocol.http.portlet Wicket interface to the JSR-168 portlet API. 
wicket.session   
 

Uses of Session in wicket
 

Fields in wicket declared as Session
protected  Session RequestCycle.session
          The session object.
 

Methods in wicket that return Session
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.
 Session ISessionFactory.newSession()
          Creates a new session
 Session Session.setStyle(java.lang.String style)
          Set the style (see Session).
 

Methods in wicket with parameters of type Session
 RequestCycle IRequestCycleFactory.newRequestCycle(Session session, Request request, Response response)
          Creates a new RequestCycle object.
static void Session.set(Session session)
          THIS METHOD IS NOT PART OF THE WICKET PUBLIC API.
 

Constructors in wicket with parameters of type Session
RequestCycle(Session session, Request request, Response response)
          Constructor.
 

Uses of Session in wicket.protocol.http
 

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

Methods in wicket.protocol.http that return Session
 Session RequestLogger.SessionData.getSession()
           
 Session AbstractHttpSessionStore.lookup(Request request)
           
 Session WebApplication.newSession()
          Create new Wicket Session object.
 

Methods in wicket.protocol.http with parameters of type Session
 void AbstractHttpSessionStore.bind(Request request, Session newSession)
           
protected  void AbstractHttpSessionStore.onBind(Request request, Session newSession)
          Template method that is called when a session is being bound to the session store.
 

Constructors in wicket.protocol.http with parameters of type Session
RequestLogger.SessionData(Session session)
          Construct.
 

Uses of Session in wicket.protocol.http.portlet
 

Subclasses of Session in wicket.protocol.http.portlet
 class WicketPortletSession
          A session subclass for the PortletSession
 

Methods in wicket.protocol.http.portlet that return Session
 Session PortletSessionStore.lookup(Request request)
           
 Session PortletApplication.newSession()
           
 

Methods in wicket.protocol.http.portlet with parameters of type Session
 void PortletSessionStore.bind(Request request, Session newSession)
           
protected  void PortletSessionStore.onBind(Request request, Session newSession)
          Template method that is called when a session is being bound to the session store.
 

Uses of Session in wicket.session
 

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

Methods in 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-2007 Wicket developers. All Rights Reserved.