org.springframework.security.web.session
Class HttpSessionDestroyedEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.springframework.context.ApplicationEvent
          extended by org.springframework.security.core.session.SessionDestroyedEvent
              extended by org.springframework.security.web.session.HttpSessionDestroyedEvent
All Implemented Interfaces:
Serializable

public class HttpSessionDestroyedEvent
extends SessionDestroyedEvent

Published by the HttpSessionEventPublisher when a HttpSession is created in the container

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
HttpSessionDestroyedEvent(javax.servlet.http.HttpSession session)
           
 
Method Summary
 String getId()
           
 List<SecurityContext> getSecurityContexts()
          Provides the SecurityContext instances which were associated with the destroyed session.
 javax.servlet.http.HttpSession getSession()
           
 
Methods inherited from class org.springframework.context.ApplicationEvent
getTimestamp
 
Methods inherited from class java.util.EventObject
getSource, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

HttpSessionDestroyedEvent

public HttpSessionDestroyedEvent(javax.servlet.http.HttpSession session)
Method Detail

getSession

public javax.servlet.http.HttpSession getSession()

getSecurityContexts

public List<SecurityContext> getSecurityContexts()
Description copied from class: SessionDestroyedEvent
Provides the SecurityContext instances which were associated with the destroyed session. Usually there will be only one security context per session.

Specified by:
getSecurityContexts in class SessionDestroyedEvent
Returns:
the SecurityContext instances which were stored in the current session (an empty list if there are none).

getId

public String getId()
Specified by:
getId in class SessionDestroyedEvent
Returns:
the identifier associated with the destroyed session.