//Get all collections
List<Collection> collections = Arrays.asList(Collection.findAll(context));
request.setAttribute("collections", collections);
//Get all the possible data loaders from the Spring configuration
BTEBatchImportService dls = new DSpace().getSingletonService(BTEBatchImportService.class);
List<String> inputTypes = dls.getFileDataLoaders();
request.setAttribute("input-types", inputTypes);
// Forward to main mydspace page
JSPManager.showJSP(request, response, "/dspace-admin/batchimport.jsp");
}