* @throws DagEngineException thrown if the jobs info could not be obtained.
*/
public WorkflowsInfo getJobs(String filter, int start, int len) throws DagEngineException {
Map<String, List<String>> filterList = parseFilter(filter);
try {
return new JobsXCommand(filterList, start, len).call();
}
catch (CommandException dce) {
throw new DagEngineException(dce);
}
}