CoordinatorJobBean coordJob = null;
if (jpaService != null) {
coordJob = jpaService.execute(new CoordJobGetJPAExecutor(id));
if (getActionInfo) {
List<CoordinatorActionBean> coordActions = jpaService
.execute(new CoordActionsSubsetGetForJobJPAExecutor(id, start, len));
coordJob.setActions(coordActions);
}
}
else {
LOG.error(ErrorCode.E0610);