2017-05-25 14:45:53 -07:00
|
|
|
package com.baeldung.quartz;
|
2017-05-24 14:23:49 -07:00
|
|
|
|
|
|
|
|
import org.quartz.Job;
|
|
|
|
|
import org.quartz.JobExecutionContext;
|
|
|
|
|
import org.quartz.JobExecutionException;
|
|
|
|
|
|
|
|
|
|
public class SimpleJob implements Job {
|
|
|
|
|
|
|
|
|
|
public void execute(JobExecutionContext arg0) throws JobExecutionException {
|
|
|
|
|
System.out.println("This is a quartz job!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|