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