this.store.store(newJob);
}
private void doReschedule(final String jobId, long executionTime, long nextExecutionTime, int rescheduledCount) throws IOException {
KahaRescheduleJobCommand update = new KahaRescheduleJobCommand();
update.setScheduler(name);
update.setJobId(jobId);
update.setExecutionTime(executionTime);
update.setNextExecutionTime(nextExecutionTime);
update.setRescheduledCount(rescheduledCount);
this.store.store(update);
}