Code example for article BAEL-818 (#1909)

* Quartz example for article: Introduction to Quartz

* Adding new module for Java Quartz

* Removing Quartz code from jee7 module

* Fixing folder structure
This commit is contained in:
Alex Vargas
2017-05-24 14:23:49 -07:00
committed by Zeger Hendrikse
parent 513c1c5e69
commit a2e2192494
5 changed files with 484 additions and 360 deletions

View File

@@ -0,0 +1,13 @@
package com.baeldung.java_quartz;
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!");
}
}