org.apache.catalina
Class SessionEvent

java.lang.Object
  extended byjava.util.EventObject
      extended byorg.apache.catalina.SessionEvent
All Implemented Interfaces:
java.io.Serializable

public final class SessionEvent
extends java.util.EventObject

General event for notifying listeners of significant changes on a Session.

Version:
$Id: SessionEvent.java 939531 2010-04-30 00:54:41Z kkolinko $
Author:
Craig R. McClanahan
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
SessionEvent(Session session, java.lang.String type, java.lang.Object data)
          Construct a new SessionEvent with the specified parameters.
 
Method Summary
 java.lang.Object getData()
          Return the event data of this event.
 Session getSession()
          Return the Session on which this event occurred.
 java.lang.String getType()
          Return the event type of this event.
 java.lang.String toString()
          Return a string representation of this event.
 
Methods inherited from class java.util.EventObject
getSource
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SessionEvent

public SessionEvent(Session session,
                    java.lang.String type,
                    java.lang.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 Detail

getData

public java.lang.Object getData()
Return the event data of this event.


getSession

public Session getSession()
Return the Session on which this event occurred.


getType

public java.lang.String getType()
Return the event type of this event.


toString

public java.lang.String toString()
Return a string representation of this event.



Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.