Class PageStatisticsDTO

java.lang.Object
com.atlassian.confluence.pages.PageStatisticsDTO

public class PageStatisticsDTO extends Object
Simple class to store statistics data fetched by PageDao.getPageStatistics()
Since:
6.11.0
  • 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