Uses of Interface
com.sdm.quasar.client.core.application.Session

Packages that use Session
com.sdm.quasar.client.core.application   
com.sdm.quasar.client.core.application.dialog.impl   
com.sdm.quasar.client.jsf.application.dialog.impl   
com.sdm.quasar.client.spring.application.dialog.impl   
 

Uses of Session in com.sdm.quasar.client.core.application
 

Methods in com.sdm.quasar.client.core.application that return Session
 Session SessionManager.createSession()
          Creates and initializes a session object.
 Session SessionCreator.createSession(SessionId sessionId, Application application)
          Creates a new session instance with the given session id.
 Session DefaultSessionManager.createSession()
          If the session is already created, it is returned.
protected  Session AbstractSessionManager.getRegisteredSession(SessionId sessionId)
          Returns the session with the given id.
protected  Session AbstractSessionManager.createSessionInstance(SessionId sessionId)
          Creates the session using a SessionCreator.
abstract  Session AbstractSessionManager.createSession()
           
 

Methods in com.sdm.quasar.client.core.application with parameters of type Session
 void SessionListener.onSessionCreate(Session session)
          This method is called by the SessionManager when a session is created.
 void SessionListener.onSessionDispose(Session session)
          This method is called by the SessionManager before a session is disposed.
protected  void AbstractSessionManager.registerSession(Session session)
          Registers a session.
protected  void AbstractSessionManager.fireSessionCreated(Session session)
          Notifies all registered SessionListeners that a new session has been created.
protected  void AbstractSessionManager.fireSessionWillBeDisposed(Session session)
          Notifies all registered SessionListeners that a session will be disposed.
 

Uses of Session in com.sdm.quasar.client.core.application.dialog.impl
 

Classes in com.sdm.quasar.client.core.application.dialog.impl that implement Session
 class DefaultSessionAdapter
           
 

Methods in com.sdm.quasar.client.core.application.dialog.impl that return Session
 Session DefaultSessionCreator.createSession(SessionId sessionId, Application application)
           
protected  Session AbstractSessionCreator.createAndActivateSession(SessionId sessionId, SessionManager sessionManager, DialogInstanceId sessionDialogInstanceId, DialogManager dialogManager, DialogServiceManager dialogServiceManager, DisposeCallback disposeCallback)
          A Session is created.
 

Uses of Session in com.sdm.quasar.client.jsf.application.dialog.impl
 

Methods in com.sdm.quasar.client.jsf.application.dialog.impl that return Session
 Session DefaultJSFSessionManager.createSession()
          If the current http-session is unknown to this SessionManager, a new session is created.
 

Uses of Session in com.sdm.quasar.client.spring.application.dialog.impl
 

Methods in com.sdm.quasar.client.spring.application.dialog.impl that return Session
 Session SpringSessionCreator.createSession(SessionId sessionId, Application application)
          Creates the session using a spring bean factory.