remove.setNextExecutionTime(executionTime);
this.store.store(remove);
}
private void doRemoveRange(long start, long end) throws IOException {
KahaRemoveScheduledJobsCommand destroy = new KahaRemoveScheduledJobsCommand();
destroy.setScheduler(name);
destroy.setStartTime(start);
destroy.setEndTime(end);
this.store.store(destroy);
}