return actionBean;
}
private CoordinatorJob.Status getStatus(String jobId){
CoordinatorJob job = null;
try {
JPAService jpaService = Services.get().get(JPAService.class);
job = jpaService.execute(new CoordJobGetJPAExecutor(jobId));
}
catch (JPAExecutorException se) {
se.printStackTrace();
}
return job.getStatus();
}