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

@@ -711,6 +711,13 @@ public class CommunityServiceImpl extends DSpaceObjectServiceImpl<Community> imp
return communityDAO.countRows(context);
}
/**
* Returns total community archived items
*
* @param community Community
* @return total community archived items
* @throws ItemCountException
*/
@Override
public int getArchivedItems(Community community) throws ItemCountException {
return ItemCounter.getInstance().getCount(community);