Package org.camunda.bpm.engine.history
Interface HistoricProcessInstanceReport
-
- All Superinterfaces:
Report
- All Known Implementing Classes:
HistoricProcessInstanceReportImpl
public interface HistoricProcessInstanceReport extends Report
Defines a report query for
HistoricProcessInstances.- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description HistoricProcessInstanceReportprocessDefinitionIdIn(java.lang.String... processDefinitionIds)Only takes historic process instances into account for the given process definition ids.HistoricProcessInstanceReportprocessDefinitionKeyIn(java.lang.String... processDefinitionKeys)Only takes historic process instances into account for the given process definition keys.HistoricProcessInstanceReportstartedAfter(java.util.Date startedAfter)Only takes historic process instances into account that were started after the given date.HistoricProcessInstanceReportstartedBefore(java.util.Date startedBefore)Only takes historic process instances into account that were started before the given date.
-
-
-
Method Detail
-
startedBefore
HistoricProcessInstanceReport startedBefore(java.util.Date 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
HistoricProcessInstanceReport startedAfter(java.util.Date 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
HistoricProcessInstanceReport processDefinitionIdIn(java.lang.String... processDefinitionIds)
Only takes historic process instances into account for the given process definition ids.- Throws:
NotValidException- if one of the given ids is null
-
processDefinitionKeyIn
HistoricProcessInstanceReport processDefinitionKeyIn(java.lang.String... processDefinitionKeys)
Only takes historic process instances into account for the given process definition keys.- Throws:
NotValidException- if one of the given ids is null
-
-