Package com.atlassian.confluence.pages
Class PageStatisticsDTO
- java.lang.Object
-
- com.atlassian.confluence.pages.PageStatisticsDTO
-
public class PageStatisticsDTO extends Object
Simple class to store statistics data fetched byPageDao.getPageStatistics()
- Since:
- 6.11.0
-
-
Constructor Summary
Constructors Constructor Description PageStatisticsDTO(int allPagesCount, int currentPagesCount, int draftPagesCount, int pagesWithUnpublishedChangesCount, int deletedPagesCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAllPagesCount()
int
getCurrentPagesCount()
int
getDeletedPagesCount()
int
getDraftPagesCount()
int
getPagesWithUnpublishedChangesCount()
-
-
-
Method Detail
-
getAllPagesCount
public int getAllPagesCount()
-
getCurrentPagesCount
public int getCurrentPagesCount()
-
getDraftPagesCount
public int getDraftPagesCount()
-
getPagesWithUnpublishedChangesCount
public int getPagesWithUnpublishedChangesCount()
-
getDeletedPagesCount
public int getDeletedPagesCount()
- Returns:
- the count of all deleted pages. Historical versions of deleted pages are not counted.
- Since:
- 7.14
-
-