*/
public BundleJobInfo getBundleJobs(String filter, int start, int len) throws BundleEngineException {
Map<String, List<String>> filterList = parseFilter(filter);
try {
return new BundleJobsXCommand(filterList, start, len).call();
}
catch (CommandException ex) {
throw new BundleEngineException(ex);
}
}