Variable naming change. Javadocs addded.

This commit is contained in:
damian
2023-06-09 16:56:26 +02:00
parent c6cf19d40c
commit ff504e35d1
11 changed files with 65 additions and 12 deletions

View File

@@ -1069,6 +1069,13 @@ public class CollectionServiceImpl extends DSpaceObjectServiceImpl<Collection> i
return collectionList;
}
/**
* Returns total collection archived items
*
* @param collection Collection
* @return total collection archived items
* @throws ItemCountException
*/
@Override
public int countArchivedItem(Collection collection) throws ItemCountException {
return ItemCounter.getInstance().getCount(collection);