Spring for Apache Hadoop

org.springframework.data.hadoop.store.event
Class AbstractStoreEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.springframework.context.ApplicationEvent
          extended by org.springframework.data.hadoop.store.event.AbstractStoreEvent
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
FileWrittenEvent

public abstract class AbstractStoreEvent
extends org.springframework.context.ApplicationEvent

Base ApplicationEvent class for store based events. All custom event classes should be derived from this class.

Author:
Janne Valkealahti
See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
AbstractStoreEvent(java.lang.Object source)
          Create a new ApplicationEvent.
 
Method Summary
 
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

AbstractStoreEvent

public AbstractStoreEvent(java.lang.Object source)
Create a new ApplicationEvent.

Parameters:
source - the component that published the event (never null)

Spring for Apache Hadoop