return (Collection<Long>) commandService.execute(acquireJobsCommand);
}
protected Date getNextDueDate() {
CommandService commandService = jobExecutor.getCommandExecutor();
Command getNextDueDate = jobExecutor.getNextDueDateCommand();
return (Date) commandService.execute(getNextDueDate);
}