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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CleanableHistoricDecisionInstanceReport
compact()
Only selects historic decision instances which have more than zero finished instances.CleanableHistoricDecisionInstanceReport
decisionDefinitionIdIn(String... decisionDefinitionIds)
Only takes historic decision instances into account for the given decision definition ids.CleanableHistoricDecisionInstanceReport
decisionDefinitionKeyIn(String... decisionDefinitionKeys)
Only takes historic decision instances into account for the given decision definition keys.CleanableHistoricDecisionInstanceReport
orderByFinished()
Order by finished decision instances amount (needs to be followed byQuery.asc()
orQuery.desc()
).CleanableHistoricDecisionInstanceReport
tenantIdIn(String... tenantIds)
Only select historic decision instances with one of the given tenant ids.CleanableHistoricDecisionInstanceReport
withoutTenantId()
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 Detail
-
decisionDefinitionIdIn
CleanableHistoricDecisionInstanceReport decisionDefinitionIdIn(String... decisionDefinitionIds)
Only takes historic decision instances into account for the given decision definition ids.- Throws:
NotValidException
- if one of the given ids is null
-
decisionDefinitionKeyIn
CleanableHistoricDecisionInstanceReport decisionDefinitionKeyIn(String... decisionDefinitionKeys)
Only takes historic decision instances into account for the given decision definition keys.- Throws:
NotValidException
- if one of the given keys is null
-
tenantIdIn
CleanableHistoricDecisionInstanceReport tenantIdIn(String... tenantIds)
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()
).
-
-