org.apache.cxf.event
Class Event

java.lang.Object
  extended by java.util.EventObject
      extended by org.apache.cxf.event.Event
All Implemented Interfaces:
java.io.Serializable

public class Event
extends java.util.EventObject

Base class for all the CXF Events.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
Event(java.lang.Object source, javax.xml.namespace.QName id)
          Constructs a Event with the event source and a unique event id.
 
Method Summary
 javax.xml.namespace.QName getID()
          Returns the unique event id for this particular bus event.
 
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

Event

public Event(java.lang.Object source,
             javax.xml.namespace.QName id)
Constructs a Event with the event source and a unique event id. This id is used to identify the event type.

Parameters:
source - The Object representing the event information.
id - the QName identifying the event type
Method Detail

getID

public javax.xml.namespace.QName getID()
Returns the unique event id for this particular bus event.

Returns:
String The event id.


Apache CXF