* @throws BundleEngineException thrown if failed to get bulk job info
*/
public BulkResponseInfo getBulkJobs(String bulkFilter, int start, int len) throws BundleEngineException {
Map<String,List<String>> bulkRequestMap = parseBulkFilter(bulkFilter);
try {
return new BulkJobsXCommand(bulkRequestMap, start, len).call();
}
catch (CommandException ex) {
throw new BundleEngineException(ex);
}
}