Package com.comalatech.workflow
Interface DocumentActivityService
-
public interface DocumentActivityService
Service providing a method to query for Document activities- Since:
- 7.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DocumentActivityResult
getPagesActivity(List<Long> pageIds, DocumentActivityQuery query)
Retrieves theDocumentActivityResult
associated to the provided queryDocumentActivityResult
getSpacesActivity(List<String> spaceKeys, DocumentActivityQuery query)
Retrieves theDocumentActivityResult
associated to the provided query
-
-
-
Method Detail
-
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
-
-