Package com.atlassian.confluence.pages
Class BlogPostStatisticsDTO
- java.lang.Object
-
- com.atlassian.confluence.pages.BlogPostStatisticsDTO
-
public class BlogPostStatisticsDTO extends Object
Simple class to store statistics data fetched byBlogPostDao.getBlogPostStatistics()
- Since:
- 6.11.0
-
-
Constructor Summary
Constructors Constructor Description BlogPostStatisticsDTO(int allBlogsCount, int currentBlogsCount, int draftBlogsCount, int blogsWithUnpublishedChangesCount, int deletedBlogsCount)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getAllBlogsCount()
int
getBlogsWithUnpublishedChangesCount()
int
getCurrentBlogsCount()
int
getDeletedBlogsCount()
int
getDraftBlogsCount()
-
-
-
Method Detail
-
getAllBlogsCount
public int getAllBlogsCount()
-
getCurrentBlogsCount
public int getCurrentBlogsCount()
-
getDraftBlogsCount
public int getDraftBlogsCount()
-
getBlogsWithUnpublishedChangesCount
public int getBlogsWithUnpublishedChangesCount()
-
getDeletedBlogsCount
public int getDeletedBlogsCount()
- Returns:
- the count of all deleted blogs. Historical versions of deleted blogs are not counted.
- Since:
- 7.14
-
-