Interface DocumentActivityResult
public interface DocumentActivityResult
Result set of activities returned by
DocumentActivityService
- Since:
- 7.0
-
Method Summary
Modifier and TypeMethodDescriptionList of document activities returned by the queryboolean
Indicates whether more results exists for the query than the ones returned in the current request
-
Method Details
-
getActivities
List of document activities returned by the query- Returns:
- list of activity objects
Activity
, not including page updates or comments - Since:
- 7.0
-
hasMoreResults
boolean hasMoreResults()Indicates whether more results exists for the query than the ones returned in the current request- Returns:
- boolean true if more pages of results are available, false if all results have been returned
to retrieve the next page of results for the actual query, set the next offset ( actual offset + limit) in your
query with
DocumentActivityQuery.setOffset(int)
, and execute the request again. - Since:
- 7.0
-