Class SessionEvent

java.lang.Object
java.util.EventObject
org.apache.catalina.SessionEvent
All Implemented Interfaces:
Serializable

public final class SessionEvent extends EventObject
General event for notifying listeners of significant changes on a Session.
Author:
Craig R. McClanahan
See Also:
  • Constructor Details

    • SessionEvent

      public SessionEvent(Session session, String type, Object data)
      Construct a new SessionEvent with the specified parameters.
      Parameters:
      session - Session on which this event occurred
      type - Event type
      data - Event data
  • Method Details

    • getData

      public Object getData()
      Returns:
      the event data of this event.
    • getSession

      public Session getSession()
      Returns:
      the Session on which this event occurred.
    • getType

      public String getType()
      Returns:
      the event type of this event.
    • toString

      public String toString()
      Overrides:
      toString in class EventObject