Package com.atlassian.confluence.pages
Class PageStatisticsDTO
java.lang.Object
com.atlassian.confluence.pages.PageStatisticsDTO
Simple class to store statistics data fetched by
PageDao.getPageStatistics()
- Since:
- 6.11.0
-
Constructor Summary
ConstructorsConstructorDescriptionPageStatisticsDTO
(int allPagesCount, int currentPagesCount, int draftPagesCount, int pagesWithUnpublishedChangesCount, int deletedPagesCount) -
Method Summary
Modifier and TypeMethodDescriptionint
int
int
int
int
-
Constructor Details
-
PageStatisticsDTO
public PageStatisticsDTO(int allPagesCount, int currentPagesCount, int draftPagesCount, int pagesWithUnpublishedChangesCount, int deletedPagesCount)
-
-
Method Details
-
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
-