Class SessionDestroyedEvent

  • All Implemented Interfaces:
    java.io.Serializable
    Direct Known Subclasses:
    HttpSessionDestroyedEvent

    public abstract class SessionDestroyedEvent
    extends AbstractSessionEvent
    Generic "session termination" event which indicates that a session (potentially represented by a security context) has ended.
    Since:
    3.0
    See Also:
    Serialized Form
    • Field Summary

      • Fields inherited from class java.util.EventObject

        source
    • Constructor Summary

      Constructors 
      Constructor Description
      SessionDestroyedEvent​(java.lang.Object source)  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract java.lang.String getId()  
      abstract java.util.List<SecurityContext> getSecurityContexts()
      Provides the SecurityContext instances which were associated with the destroyed session.
      • 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

      • SessionDestroyedEvent

        public SessionDestroyedEvent​(java.lang.Object source)
    • Method Detail

      • getSecurityContexts

        public abstract java.util.List<SecurityContext> getSecurityContexts()
        Provides the SecurityContext instances which were associated with the destroyed session. Usually there will be only one security context per session.
        Returns:
        the SecurityContext instances which were stored in the current session (an empty list if there are none).
      • getId

        public abstract java.lang.String getId()
        Returns:
        the identifier associated with the destroyed session.