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 
DmnHistoricDecisionExecutions.- Author:
- Tijs Rademakers
- 
Nested Class SummaryNested classes/interfaces inherited from interface org.flowable.common.engine.api.query.QueryQuery.NullHandlingOnOrder
- 
Method SummaryModifier 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.DeleteQuerydelete, deleteWithRelatedData
- 
Method Details- 
idOnly select decision execution with the given id.
- 
idsOnly select decision executions with the given ids.
- 
decisionDefinitionIdOnly select decision executions with the given definition id.
- 
deploymentIdOnly select decision executions with the given deployment id.
- 
decisionKeyOnly select decision executions with the given definition key.
- 
instanceIdOnly select decision executions with the given instance id.
- 
executionIdOnly select decision executions with the given execution id.
- 
activityIdOnly select decision executions with the given activity id.
- 
scopeTypeOnly select decision executions with the given scope type.
- 
withoutScopeTypeDmnHistoricDecisionExecutionQuery withoutScopeType()Only select decision executions without a scope type.
- 
processInstanceIdWithChildrenSelect all decision executions for the given process instance id and its children.
- 
caseInstanceIdWithChildrenSelect all decision executions for the given case instance id and its children.
- 
failedOnly select decision executions with the given failed state.
- 
tenantIdOnly select decision executions that have the given tenant id.
- 
tenantIdLikeOnly select decision executions with a tenant id like the given one.
- 
withoutTenantIdDmnHistoricDecisionExecutionQuery withoutTenantId()Only select decision executions that do not have a tenant id.
- 
orderByStartTimeDmnHistoricDecisionExecutionQuery orderByStartTime()Order by the start time of the decision executions (needs to be followed byQuery.asc()orQuery.desc()).
- 
orderByEndTimeDmnHistoricDecisionExecutionQuery orderByEndTime()Order by the end time of the decision executions (needs to be followed byQuery.asc()orQuery.desc()).
- 
orderByTenantIdDmnHistoricDecisionExecutionQuery orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).
 
-