Uses of Interface
org.flowable.dmn.api.DmnDecisionQuery
Packages that use DmnDecisionQuery
-
Uses of DmnDecisionQuery in org.flowable.dmn.api
Methods in org.flowable.dmn.api that return DmnDecisionQueryModifier and TypeMethodDescriptionDmnRepositoryService.createDecisionQuery()
DmnDecisionQuery.decisionCategory
(String decisionCategory) Only select decisions with the given category.DmnDecisionQuery.decisionCategoryLike
(String decisionCategoryLike) Only select decisions where the category matches the given parameter.DmnDecisionQuery.decisionCategoryNotEquals
(String categoryNotEquals) Only select deployments that have a different category then the given one.DmnDecisionQuery.decisionId
(String decisionId) Only select decision with the given id.DmnDecisionQuery.decisionIds
(Set<String> decisionIds) Only select decisions with the given ids.DmnDecisionQuery.decisionKey
(String decisionKey) Only select decision with the given key.DmnDecisionQuery.decisionKeyLike
(String decisionKeyLike) Only select decisions where the key matches the given parameter.DmnDecisionQuery.decisionName
(String decisionName) Only select decisions with the given name.DmnDecisionQuery.decisionNameLike
(String decisionNameLike) Only select decisions where the name matches the given parameter.DmnDecisionQuery.decisionResourceName
(String resourceName) Only select decision with the given resource name.DmnDecisionQuery.decisionResourceNameLike
(String resourceNameLike) Only select decision with a resource name like the given .DmnDecisionQuery.decisionTenantId
(String tenantId) Only select decisions that have the given tenant id.DmnDecisionQuery.decisionTenantIdLike
(String tenantIdLike) Only select decisions with a tenant id like the given one.DmnDecisionQuery.decisionType
(String decisionType) Only select decisions with the given type.DmnDecisionQuery.decisionTypeLike
(String decisionType) Only select decisions like the given type.DmnDecisionQuery.decisionVersion
(Integer decisionVersion) Only select decisions with a certain version.DmnDecisionQuery.decisionVersionGreaterThan
(Integer decisionVersion) Only select decisions which version are greater than a certain version.DmnDecisionQuery.decisionVersionGreaterThanOrEquals
(Integer decisionVersion) Only select decisions which version are greater than or equals a certain version.DmnDecisionQuery.decisionVersionLowerThan
(Integer decisionVersion) Only select decisions which version are lower than a certain version.DmnDecisionQuery.decisionVersionLowerThanOrEquals
(Integer decisionVersion) Only select decisions which version are lower than or equals a certain version.DmnDecisionQuery.decisionWithoutTenantId()
Only select decisions that do not have a tenant id.DmnDecisionQuery.deploymentId
(String deploymentId) Only select decisions that are deployed in a deployment with the given deployment idDmnDecisionQuery.deploymentIds
(Set<String> deploymentIds) Select decisions that are deployed in deployments with the given set of idsDmnDecisionQuery.latestVersion()
Only select the decisions which are the latest deployed (ie.DmnDecisionQuery.orderByDecisionCategory()
Order by the category of the decisions (needs to be followed byQuery.asc()
orQuery.desc()
).DmnDecisionQuery.orderByDecisionId()
Order by the id of the decisions (needs to be followed byQuery.asc()
orQuery.desc()
).DmnDecisionQuery.orderByDecisionKey()
Order by decision key (needs to be followed byQuery.asc()
orQuery.desc()
).DmnDecisionQuery.orderByDecisionName()
Order by the name of the decisions (needs to be followed byQuery.asc()
orQuery.desc()
).DmnDecisionQuery.orderByDecisionType()
Order by decision type (needs to be followed byQuery.asc()
orQuery.desc()
).DmnDecisionQuery.orderByDecisionVersion()
Order by the version of the decisions (needs to be followed byQuery.asc()
orQuery.desc()
).DmnDecisionQuery.orderByDeploymentId()
Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).DmnDecisionQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).DmnDecisionQuery.parentDeploymentId
(String parentDeploymentId) Only select decisions that are deployed in a deployment with the given parent deployment id -
Uses of DmnDecisionQuery in org.flowable.dmn.engine.impl
Classes in org.flowable.dmn.engine.impl that implement DmnDecisionQueryMethods in org.flowable.dmn.engine.impl that return DmnDecisionQueryModifier and TypeMethodDescriptionDmnRepositoryServiceImpl.createDecisionQuery()
DecisionQueryImpl.decisionIds
(Set<String> decisionIds) DecisionQueryImpl.decisionTenantId
(String tenantId) DecisionQueryImpl.decisionTenantIdLike
(String tenantIdLike) DecisionQueryImpl.decisionType
(String decisionType) DecisionQueryImpl.decisionTypeLike
(String decisionTypeLike) DecisionQueryImpl.decisionVersionGreaterThan
(Integer decisionVersion) DecisionQueryImpl.decisionVersionGreaterThanOrEquals
(Integer decisionVersion) DecisionQueryImpl.decisionVersionLowerThan
(Integer decisionVersion) DecisionQueryImpl.decisionVersionLowerThanOrEquals
(Integer decisionVersion) DecisionQueryImpl.decisionWithoutTenantId()
DecisionQueryImpl.orderByDecisionCategory()
DecisionQueryImpl.orderByDecisionId()
DecisionQueryImpl.orderByDecisionKey()
DecisionQueryImpl.orderByDecisionName()
DecisionQueryImpl.orderByDecisionType()
DecisionQueryImpl.orderByDecisionVersion()
DecisionQueryImpl.orderByDeploymentId()
DecisionQueryImpl.orderByTenantId()