continue;
}
// Code below this is executed only when none of the Coordinator actions are pending
// Get status of Coordinator actions with pending false
List<CoordinatorAction.Status> coordActionStatusList = jpaService
.execute(new CoordJobGetActionsStatusByPendingFalseJPAExecutor(jobId));
HashMap<CoordinatorAction.Status, Integer> coordActionStatus = new HashMap<CoordinatorAction.Status, Integer>();
for (CoordinatorAction.Status status : coordActionStatusList) {
int counter = 0;
if (coordActionStatus.containsKey(status)) {