Uses of Interface
com.vaadin.server.WrappedSession

Packages that use WrappedSession
com.vaadin.server   
 

Uses of WrappedSession in com.vaadin.server
 

Classes in com.vaadin.server that implement WrappedSession
 class WrappedHttpSession
          Wrapper for HttpSession.
 class WrappedPortletSession
          Wrapper for PortletSession.
 

Methods in com.vaadin.server that return WrappedSession
 WrappedSession VaadinSession.getSession()
          Gets the underlying session to which this service session is currently associated.
 WrappedSession VaadinPortletRequest.getWrappedSession()
           
 WrappedSession VaadinServletRequest.getWrappedSession()
           
 WrappedSession VaadinRequest.getWrappedSession()
          Gets the session associated with this request, creating a new if there is no session.
 WrappedSession VaadinPortletRequest.getWrappedSession(boolean allowSessionCreation)
           
 WrappedSession VaadinServletRequest.getWrappedSession(boolean allowSessionCreation)
           
 WrappedSession VaadinRequest.getWrappedSession(boolean allowSessionCreation)
          Gets the session associated with this request, optionally creating a new if there is no session.
 

Methods in com.vaadin.server with parameters of type WrappedSession
static VaadinSession VaadinSession.getForSession(VaadinService service, WrappedSession underlyingSession)
          Deprecated. as of 7.6, call VaadinService.loadSession(WrappedSession) instead
protected  java.util.concurrent.locks.Lock VaadinService.getSessionLock(WrappedSession wrappedSession)
          Gets the lock instance used to lock the VaadinSession associated with the given wrapped session.
protected static boolean VaadinSession.hasLock(VaadinService service, WrappedSession session)
          Checks if the current thread has exclusive access to the given WrappedSession.
protected  VaadinSession VaadinService.loadSession(WrappedSession wrappedSession)
          Called when the VaadinSession should be loaded from the underlying HTTP session
protected  void VaadinService.lockSession(WrappedSession wrappedSession)
          Locks the given session for this service instance.
protected  VaadinSession VaadinService.readFromHttpSession(WrappedSession wrappedSession)
          Performs the actual read of the VaadinSession from the underlying HTTP session after sanity checks have been performed.
protected  VaadinSession VaadinPortletService.readFromHttpSession(WrappedSession wrappedSession)
           
 void VaadinSession.refreshTransients(WrappedSession wrappedSession, VaadinService vaadinService)
          Refreshes the transient fields of the session to ensure they are up to date.
protected  void VaadinService.removeFromHttpSession(WrappedSession wrappedSession)
          Performs the actual removal of the VaadinSession from the underlying HTTP session after sanity checks have been performed
protected  void VaadinPortletService.removeFromHttpSession(WrappedSession wrappedSession)
           
 void VaadinService.removeSession(WrappedSession wrappedSession)
          Called when the VaadinSession should be removed from the underlying HTTP session
 void VaadinSession.storeInSession(VaadinService service, WrappedSession session)
          Deprecated. as of 7.6, call VaadinService.storeSession(VaadinSession, WrappedSession) instead
protected  void VaadinService.storeSession(VaadinSession session, WrappedSession wrappedSession)
          Called when the VaadinSession should be stored.
protected  void VaadinService.unlockSession(WrappedSession wrappedSession)
          Releases the lock for the given session for this service instance.
protected  void VaadinService.writeToHttpSession(WrappedSession wrappedSession, VaadinSession session)
          Performs the actual write of the VaadinSession to the underlying HTTP session after sanity checks have been performed.
protected  void VaadinPortletService.writeToHttpSession(WrappedSession wrappedSession, VaadinSession session)
           
 



Copyright © 2000-2014 Vaadin Ltd. All Rights Reserved.