Package org.quartz.jobs

Examples of org.quartz.jobs.NoOpJob


    {
    JobDetail jobDetail = new JobDetail();

    SimpleTrigger trig = new SimpleTrigger();

    JobExecutionContext jec = new JobExecutionContext(null, new TriggerFiredBundle(jobDetail, trig, null, false, null, null, null, null), new NoOpJob());
    jec.put("deleteVersions", new Boolean(deleteVersions));
    new CleanOldVersionsJob().execute(jec);

    Map<String,Integer> result = (Map<String,Integer>)jec.getResult();
    this.cleaningMap = result;
View Full Code Here

TOP

Related Classes of org.quartz.jobs.NoOpJob

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.