Interface ContentRetentionDao
- 
- All Known Implementing Classes:
- DefaultContentRetentionDao
 
 public interface ContentRetentionDao
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description List<HistoricalVersion>findHistoricalAttachmentVersions(long startOriginalId, int limit)List<HistoricalVersion>findHistoricalPageVersions(long startOriginalId, int limit)Get a list of content which has a current version with an id greater or equal to {@param startOriginalId} and less than {@param endOriginalId}.
 
- 
- 
- 
Method Detail- 
findHistoricalPageVersionsList<HistoricalVersion> findHistoricalPageVersions(long startOriginalId, int limit) Get a list of content which has a current version with an id greater or equal to {@param startOriginalId} and less than {@param endOriginalId}.- Parameters:
- startOriginalId- the start of the range to select
- limit- the maximum number of historical versions to retrieve.
- Returns:
- the list of HistoricalVersionfound within the requested range
- Since:
- 7.12
 
 - 
findHistoricalAttachmentVersionsList<HistoricalVersion> findHistoricalAttachmentVersions(long startOriginalId, int limit) 
 
- 
 
-