All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jobs.InfoJob Maven / Gradle / Ivy

The newest version!
package jobs;

import org.quartz.Job;
import org.quartz.JobExecutionContext;
import org.quartz.JobExecutionException;

import com.google.inject.Singleton;

@Singleton
public class InfoJob implements Job {

    @Override
    public void execute(final JobExecutionContext jobExecutionContext) throws JobExecutionException {
        //Do nothing for now
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy