org.olat.notifications
Class DummyJob

java.lang.Object
  extended by org.springframework.scheduling.quartz.QuartzJobBean
      extended by org.olat.core.commons.scheduler.JobWithDB
          extended by org.olat.notifications.DummyJob
All Implemented Interfaces:
org.quartz.Job

public class DummyJob
extends JobWithDB

Description:
dummy job that does nothing. Used in spring in cluster mode for services that only run on one node.

Initial Date: 09.09.2008

Author:
guido

Constructor Summary
DummyJob()
           
 
Method Summary
 void executeWithDB(org.quartz.JobExecutionContext arg0)
          Implement this execute method instead of the regular execute method if your job does some database stuff using the database factory.
 
Methods inherited from class org.springframework.scheduling.quartz.QuartzJobBean
execute
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DummyJob

public DummyJob()
Method Detail

executeWithDB

public void executeWithDB(org.quartz.JobExecutionContext arg0)
                   throws org.quartz.JobExecutionException
Description copied from class: JobWithDB
Implement this execute method instead of the regular execute method if your job does some database stuff using the database factory.

Specified by:
executeWithDB in class JobWithDB
Parameters:
arg0 - The JobExecutionContext
Throws:
org.quartz.JobExecutionException
See Also:
QuartzJobBean.executeInternal(org.quartz.JobExecutionContext)