*/
@SuppressWarnings("unchecked")
public WorkflowsInfo getJobs(String filterStr, int start, int len) throws DagEngineException {
Map<String, List<String>> filter = parseFilter(filterStr);
try {
return new JobsCommand(filter, start, len).call();
}
catch (CommandException dce) {
throw new DagEngineException(dce);
}
}