Package org.camunda.bpm.engine.history
Interface HistoricProcessInstanceReport
- All Superinterfaces:
Report
- All Known Implementing Classes:
HistoricProcessInstanceReportImpl
Defines a report query for HistoricProcessInstance
s.
- Author:
- Roman Smirnov
-
Method Summary
Modifier and TypeMethodDescriptionprocessDefinitionIdIn
(String... processDefinitionIds) Only takes historic process instances into account for the given process definition ids.processDefinitionKeyIn
(String... processDefinitionKeys) Only takes historic process instances into account for the given process definition keys.startedAfter
(Date startedAfter) Only takes historic process instances into account that were started after the given date.startedBefore
(Date startedBefore) Only takes historic process instances into account that were started before the given date.
-
Method Details
-
startedBefore
Only takes historic process instances into account that were started before the given date.- Throws:
NotValidException
- if the given started before date is null
-
startedAfter
Only takes historic process instances into account that were started after the given date.- Throws:
NotValidException
- if the given started after date is null
-
processDefinitionIdIn
Only takes historic process instances into account for the given process definition ids.- Throws:
NotValidException
- if one of the given ids is null
-
processDefinitionKeyIn
Only takes historic process instances into account for the given process definition keys.- Throws:
NotValidException
- if one of the given ids is null
-