Package org.camunda.bpm.engine.history
Interface HistoricTaskInstanceReport
- All Superinterfaces:
- Report
- All Known Implementing Classes:
- HistoricTaskInstanceReportImpl
- Author:
- Stefan Hentschel.
- 
Method SummaryModifier and TypeMethodDescriptioncompletedAfter(Date completedAfter) Sets the completed after date for constraining the query to search for all tasks which are completed after a certain date.completedBefore(Date completedBefore) Sets the completed before date for constraining the query to search for all tasks which are completed before a certain date.Executes the task report query and returns a list ofHistoricTaskInstanceReportResultsExecutes the task report query and returns a list ofHistoricTaskInstanceReportResults
- 
Method Details- 
completedAfterSets the completed after date for constraining the query to search for all tasks which are completed after a certain date. - Parameters:
- completedAfter- A- Dateto define the granularity of the report
- Throws:
- NotValidException- When the given date is null.
 
- 
completedBeforeSets the completed before date for constraining the query to search for all tasks which are completed before a certain date. - Parameters:
- completedBefore- A- Dateto define the granularity of the report
- Throws:
- NotValidException- When the given date is null.
 
- 
countByProcessDefinitionKeyList<HistoricTaskInstanceReportResult> countByProcessDefinitionKey()Executes the task report query and returns a list of HistoricTaskInstanceReportResults- Returns:
- a list of HistoricTaskInstanceReportResults
- Throws:
- AuthorizationException- If the user has no- Permissions.READ_HISTORYpermission on any- Resources.PROCESS_DEFINITION.
 
- 
countByTaskNameList<HistoricTaskInstanceReportResult> countByTaskName()Executes the task report query and returns a list of HistoricTaskInstanceReportResults- Returns:
- a list of HistoricTaskInstanceReportResults
- Throws:
- AuthorizationException- If the user has no- Permissions.READ_HISTORYpermission on any- Resources.PROCESS_DEFINITION.
 
 
-