mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-19 07:53:08 +00:00
Remove unused function findAllCollectionsByEntityType of CollectionService
This commit is contained in:
@@ -1109,26 +1109,6 @@ public class CollectionServiceImpl extends DSpaceObjectServiceImpl<Collection> i
|
||||
return (int) resp.getTotalSearchResults();
|
||||
}
|
||||
|
||||
@Override
|
||||
@SuppressWarnings("rawtypes")
|
||||
public List<Collection> findAllCollectionsByEntityType(Context context, String entityType)
|
||||
throws SearchServiceException {
|
||||
List<Collection> collectionList = new ArrayList<>();
|
||||
|
||||
DiscoverQuery discoverQuery = new DiscoverQuery();
|
||||
discoverQuery.setDSpaceObjectFilter(IndexableCollection.TYPE);
|
||||
discoverQuery.addFilterQueries("dspace.entity.type:" + entityType);
|
||||
|
||||
DiscoverResult discoverResult = searchService.search(context, discoverQuery);
|
||||
List<IndexableObject> solrIndexableObjects = discoverResult.getIndexableObjects();
|
||||
|
||||
for (IndexableObject solrCollection : solrIndexableObjects) {
|
||||
Collection c = ((IndexableCollection) solrCollection).getIndexedObject();
|
||||
collectionList.add(c);
|
||||
}
|
||||
return collectionList;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns total collection archived items
|
||||
*
|
||||
|
Reference in New Issue
Block a user