Package org.flowable.dmn.api
Interface DmnHistoricDecisionExecutionQuery
- All Superinterfaces:
DeleteQuery<DmnHistoricDecisionExecutionQuery,
,DmnHistoricDecisionExecution> Query<DmnHistoricDecisionExecutionQuery,
DmnHistoricDecisionExecution>
- All Known Implementing Classes:
HistoricDecisionExecutionQueryImpl
public interface DmnHistoricDecisionExecutionQuery
extends Query<DmnHistoricDecisionExecutionQuery,DmnHistoricDecisionExecution>, DeleteQuery<DmnHistoricDecisionExecutionQuery,DmnHistoricDecisionExecution>
Allows programmatic querying of
DmnHistoricDecisionExecution
s.- Author:
- Tijs Rademakers
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptionactivityId
(String activityId) Only select decision executions with the given activity id.caseInstanceIdWithChildren
(String caseInstanceId) Select all decision executions for the given case instance id and its children.decisionDefinitionId
(String decisionDefinitionId) Only select decision executions with the given definition id.decisionKey
(String decisionKey) Only select decision executions with the given definition key.deploymentId
(String deploymentId) Only select decision executions with the given deployment id.executionId
(String executionId) Only select decision executions with the given execution id.Only select decision executions with the given failed state.Only select decision execution with the given id.Only select decision executions with the given ids.instanceId
(String instanceId) Only select decision executions with the given instance id.Order by the end time of the decision executions (needs to be followed byQuery.asc()
orQuery.desc()
).Order by the start time of the decision executions (needs to be followed byQuery.asc()
orQuery.desc()
).Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).processInstanceIdWithChildren
(String processInstanceId) Select all decision executions for the given process instance id and its children.Only select decision executions with the given scope type.Only select decision executions that have the given tenant id.tenantIdLike
(String tenantIdLike) Only select decision executions with a tenant id like the given one.Only select decision executions without a scope type.Only select decision executions that do not have a tenant id.Methods inherited from interface org.flowable.common.engine.api.query.DeleteQuery
delete, deleteWithRelatedData
-
Method Details
-
id
Only select decision execution with the given id. -
ids
Only select decision executions with the given ids. -
decisionDefinitionId
Only select decision executions with the given definition id. -
deploymentId
Only select decision executions with the given deployment id. -
decisionKey
Only select decision executions with the given definition key. -
instanceId
Only select decision executions with the given instance id. -
executionId
Only select decision executions with the given execution id. -
activityId
Only select decision executions with the given activity id. -
scopeType
Only select decision executions with the given scope type. -
withoutScopeType
DmnHistoricDecisionExecutionQuery withoutScopeType()Only select decision executions without a scope type. -
processInstanceIdWithChildren
Select all decision executions for the given process instance id and its children. -
caseInstanceIdWithChildren
Select all decision executions for the given case instance id and its children. -
failed
Only select decision executions with the given failed state. -
tenantId
Only select decision executions that have the given tenant id. -
tenantIdLike
Only select decision executions with a tenant id like the given one. -
withoutTenantId
DmnHistoricDecisionExecutionQuery withoutTenantId()Only select decision executions that do not have a tenant id. -
orderByStartTime
DmnHistoricDecisionExecutionQuery orderByStartTime()Order by the start time of the decision executions (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByEndTime
DmnHistoricDecisionExecutionQuery orderByEndTime()Order by the end time of the decision executions (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByTenantId
DmnHistoricDecisionExecutionQuery orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).
-