Save This Page
Home » quartz-1.6.0 » org » quartz » listeners » [javadoc | source]
org.quartz.listeners
abstract public class: JobListenerSupport [javadoc | source]
java.lang.Object
   org.quartz.listeners.JobListenerSupport

All Implemented Interfaces:
    JobListener

Direct Known Subclasses:
    JobChainingJobListener

A helpful abstract base class for implementors of org.quartz.JobListener .

The methods in this class are empty so you only need to override the subset for the org.quartz.JobListener events you care about.

You are required to implement org.quartz.JobListener#getName() to return the unique name of your JobListener.

Method from org.quartz.listeners.JobListenerSupport Summary:
getLog,   jobExecutionVetoed,   jobToBeExecuted,   jobWasExecuted
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.quartz.listeners.JobListenerSupport Detail:
 protected Log getLog() 
 public  void jobExecutionVetoed(JobExecutionContext context) 
 public  void jobToBeExecuted(JobExecutionContext context) 
 public  void jobWasExecuted(JobExecutionContext context,
    JobExecutionException jobException)