org.eobjects.datacleaner.monitor.events
Class JobFailedEvent

java.lang.Object
  extended by java.util.EventObject
      extended by org.springframework.context.ApplicationEvent
          extended by org.eobjects.datacleaner.monitor.events.JobFailedEvent
All Implemented Interfaces:
Serializable

public class JobFailedEvent
extends org.springframework.context.ApplicationEvent

Event raised when executing a AnalysisJob failed.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.EventObject
source
 
Constructor Summary
JobFailedEvent(Object source, ExecutionLog executionLog, ComponentJob componentJob, InputRow row, Throwable throwable)
          Constructs a new JobFailedEvent.
 
Method Summary
 ComponentJob getComponentJob()
           
 ExecutionLog getExecutionLog()
           
 InputRow getRow()
           
 Throwable getThrowable()
           
 
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

JobFailedEvent

public JobFailedEvent(Object source,
                      ExecutionLog executionLog,
                      ComponentJob componentJob,
                      InputRow row,
                      Throwable throwable)
Constructs a new JobFailedEvent.

Parameters:
source -
executionLog - the execution log of the triggered job
componentJob - the component that made job fail, if available, or else null.
row - the record that made the job fail, if available, or else null.
throwable - the exception thrown that made the job fail, if available, or null.
Method Detail

getExecutionLog

public ExecutionLog getExecutionLog()

getComponentJob

public ComponentJob getComponentJob()

getRow

public InputRow getRow()

getThrowable

public Throwable getThrowable()


Copyright © 2012 Human Inference. All Rights Reserved.