JPAService jpaService = Services.get().get(JPAService.class);
if (!active) {
list = jpaService.execute(new CoordJobGetActionsForDatesJPAExecutor(jobId, start, end));
}
else {
list = jpaService.execute(new CoordJobGetActionsByDatesForKillJPAExecutor(jobId, start, end));
}
return list;
}