Package com.comalatech.workflow
Interface DocumentActivityService
public interface DocumentActivityService
Service providing a method to query for Document activities
- Since:
- 7.0
-
Method Summary
Modifier and TypeMethodDescriptiongetPagesActivity
(List<Long> pageIds, DocumentActivityQuery query) Retrieves theDocumentActivityResult
associated to the provided querygetSpacesActivity
(List<String> spaceKeys, DocumentActivityQuery query) Retrieves theDocumentActivityResult
associated to the provided query
-
Method Details
-
getPagesActivity
DocumentActivityResult getPagesActivity(List<Long> pageIds, DocumentActivityQuery query) throws WorkflowException Retrieves theDocumentActivityResult
associated to the provided query- Parameters:
pageIds
- list of page ids to retrieve the workflows activities forquery
-DocumentActivityQuery
query to be used- Returns:
DocumentActivityResult
result with activitiesActivity
and search metadata- Throws:
WorkflowException
- Since:
- 7.0
-
getSpacesActivity
DocumentActivityResult getSpacesActivity(List<String> spaceKeys, DocumentActivityQuery query) throws WorkflowException Retrieves theDocumentActivityResult
associated to the provided query- Parameters:
spaceKeys
- list of space keys to retrieve the workflows activities forquery
-DocumentActivityQuery
query to be used- Returns:
DocumentActivityResult
result with activitiesActivity
and search metadata- Throws:
WorkflowException
- Since:
- 7.0
-