*/
public CoordinatorJobInfo getCoordJobs(String filter, int start, int len) throws CoordinatorEngineException {
Map<String, List<String>> filterList = parseJobsFilter(filter);
try {
return new CoordJobsXCommand(filterList, start, len).call();
}
catch (CommandException ex) {
throw new CoordinatorEngineException(ex);
}
}