* Quartz example for article: Introduction to Quartz * Adding new module for Java Quartz * Removing Quartz code from jee7 module * Fixing folder structure
13 lines
322 B
Java
13 lines
322 B
Java
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!");
|
|
}
|
|
|
|
} |