doRemove(executionTime, job.getJobId());
}
}
private void doRemove(long executionTime, final String jobId) throws IOException {
KahaRemoveScheduledJobCommand remove = new KahaRemoveScheduledJobCommand();
remove.setScheduler(name);
remove.setJobId(jobId);
remove.setNextExecutionTime(executionTime);
this.store.store(remove);
}