*/
@Override
public CoordinatorJobBean getCoordJob(String jobId, String filter, int start, int length) throws BaseEngineException {
List<String> filterList = parseStatusFilter(filter);
try {
return new CoordJobXCommand(jobId, filterList, start, length)
.call();
}
catch (CommandException ex) {
throw new BaseEngineException(ex);
}