Interface EdgeContentQueries
-
- All Known Implementing Classes:
DefaultEdgeContentQueries
public interface EdgeContentQueries- Since:
- 7.16
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ContentEntityObject>getContentCreatedSince(Date startDate)Get all contents created since a date in the pastList<com.atlassian.fugue.Pair<ContentEntityObject,LikeEntity>>getLikesSince(Date startDate)Get all likes associated to each content since a date in the past
-
-
-
Method Detail
-
getLikesSince
List<com.atlassian.fugue.Pair<ContentEntityObject,LikeEntity>> getLikesSince(Date startDate)
Get all likes associated to each content since a date in the past- Parameters:
startDate- the past date- Returns:
- list of pairs of the content and its likes
-
getContentCreatedSince
List<ContentEntityObject> getContentCreatedSince(Date startDate)
Get all contents created since a date in the past- Parameters:
startDate- the past date- Returns:
- a list of
ContentEntityObjectrepresenting the contents
-
-