Package fm.last.citrine.jobs

Examples of fm.last.citrine.jobs.NullJob


   */
  private JobExecutionContext createJobExecutionContext(Task task) {
    JobDetail jobDetail = new JobDetail();
    JobDataMap jobDataMap = jobDetail.getJobDataMap();
    jobDataMap.put(SchedulerConstants.TASK_ID, task.getId());
    Job testJob = new NullJob();
    JobExecutionContext context = new JobExecutionContext(scheduler, new TriggerFiredBundle(jobDetail,
        new SimpleTrigger(), null, false, new Date(), null, null, null), testJob);
    return context;
  }
View Full Code Here

TOP

Related Classes of fm.last.citrine.jobs.NullJob

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.