Package org.camunda.bpm.engine.history
Interface CleanableHistoricDecisionInstanceReport
- All Superinterfaces:
Query<CleanableHistoricDecisionInstanceReport,
CleanableHistoricDecisionInstanceReportResult>
- All Known Implementing Classes:
CleanableHistoricDecisionInstanceReportImpl
public interface CleanableHistoricDecisionInstanceReport
extends Query<CleanableHistoricDecisionInstanceReport,CleanableHistoricDecisionInstanceReportResult>
Defines a report query for finished decision instances.
-
Method Summary
Modifier and TypeMethodDescriptioncompact()
Only selects historic decision instances which have more than zero finished instances.decisionDefinitionIdIn
(String... decisionDefinitionIds) Only takes historic decision instances into account for the given decision definition ids.decisionDefinitionKeyIn
(String... decisionDefinitionKeys) Only takes historic decision instances into account for the given decision definition keys.Order by finished decision instances amount (needs to be followed byQuery.asc()
orQuery.desc()
).tenantIdIn
(String... tenantIds) Only select historic decision instances with one of the given tenant ids.Only selects historic decision instances which have no tenant id.Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult, unlimitedList
-
Method Details
-
decisionDefinitionIdIn
Only takes historic decision instances into account for the given decision definition ids.- Throws:
NotValidException
- if one of the given ids is null
-
decisionDefinitionKeyIn
Only takes historic decision instances into account for the given decision definition keys.- Throws:
NotValidException
- if one of the given keys is null
-
tenantIdIn
Only select historic decision instances with one of the given tenant ids.- Throws:
NotValidException
- if one of the given ids is null
-
withoutTenantId
CleanableHistoricDecisionInstanceReport withoutTenantId()Only selects historic decision instances which have no tenant id. -
compact
CleanableHistoricDecisionInstanceReport compact()Only selects historic decision instances which have more than zero finished instances. -
orderByFinished
CleanableHistoricDecisionInstanceReport orderByFinished()Order by finished decision instances amount (needs to be followed byQuery.asc()
orQuery.desc()
).
-