ParamChecker.notEmpty(jobId, "jobId");
ParamChecker.notEmpty(startAction, "startAction");
ParamChecker.notEmpty(endAction, "endAction");
try {
long count = jpaService.execute(new CoordJobGetActionRunningCountForRangeJPAExecutor(jobId, startAction,
endAction));
if (count == 0) {
return jpaService.execute(new CoordJobGetActionModifiedDateForRangeJPAExecutor(jobId, startAction, endAction));
}
else {