public interface DmnDecisionQuery extends Query<DmnDecisionQuery,DmnDecision>
DmnDecisions.Query.NullHandlingOnOrder| Modifier and Type | Method and Description |
|---|---|
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 id
|
DmnDecisionQuery |
deploymentIds(Set<String> deploymentIds)
Select decisions that are deployed in deployments with the given set of ids
|
DmnDecisionQuery |
latestVersion()
Only select the decisions which are the latest deployed (ie.
|
DmnDecisionQuery |
orderByDecisionCategory()
Order by the category of the decisions (needs to be followed by
Query.asc() or Query.desc()). |
DmnDecisionQuery |
orderByDecisionId()
Order by the id of the decisions (needs to be followed by
Query.asc() or Query.desc()). |
DmnDecisionQuery |
orderByDecisionKey()
Order by decision key (needs to be followed by
Query.asc() or Query.desc()). |
DmnDecisionQuery |
orderByDecisionName()
Order by the name of the decisions (needs to be followed by
Query.asc() or Query.desc()). |
DmnDecisionQuery |
orderByDecisionType()
Order by decision type (needs to be followed by
Query.asc() or Query.desc()). |
DmnDecisionQuery |
orderByDecisionVersion()
Order by the version of the decisions (needs to be followed by
Query.asc() or Query.desc()). |
DmnDecisionQuery |
orderByDeploymentId()
Order by deployment id (needs to be followed by
Query.asc() or Query.desc()). |
DmnDecisionQuery |
orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc()). |
DmnDecisionQuery decisionId(String decisionId)
DmnDecisionQuery decisionIds(Set<String> decisionIds)
DmnDecisionQuery decisionCategory(String decisionCategory)
DmnDecisionQuery decisionCategoryLike(String decisionCategoryLike)
DmnDecisionQuery decisionCategoryNotEquals(String categoryNotEquals)
DmnDeploymentBuilder.category(String)DmnDecisionQuery decisionName(String decisionName)
DmnDecisionQuery decisionNameLike(String decisionNameLike)
DmnDecisionQuery deploymentId(String deploymentId)
DmnDecisionQuery deploymentIds(Set<String> deploymentIds)
DmnDecisionQuery decisionKey(String decisionKey)
DmnDecisionQuery decisionKeyLike(String decisionKeyLike)
DmnDecisionQuery decisionVersion(Integer decisionVersion)
decisionKey(String)DmnDecisionQuery decisionVersionGreaterThan(Integer decisionVersion)
DmnDecisionQuery decisionVersionGreaterThanOrEquals(Integer decisionVersion)
DmnDecisionQuery decisionVersionLowerThan(Integer decisionVersion)
DmnDecisionQuery decisionVersionLowerThanOrEquals(Integer decisionVersion)
DmnDecisionQuery latestVersion()
Can also be used without any other criteria (ie. query.latest().list()), which will then give all the latest versions of all the deployed decisions.
FlowableIllegalArgumentException - if used in combination with decisionVersion(Integer) or deploymentId(String)DmnDecisionQuery decisionResourceName(String resourceName)
DmnDecisionQuery decisionResourceNameLike(String resourceNameLike)
DmnDecisionQuery decisionTenantId(String tenantId)
DmnDecisionQuery decisionTenantIdLike(String tenantIdLike)
DmnDecisionQuery decisionWithoutTenantId()
DmnDecisionQuery decisionType(String decisionType)
DmnDecisionQuery decisionTypeLike(String decisionType)
DmnDecisionQuery orderByDecisionCategory()
Query.asc() or Query.desc()).DmnDecisionQuery orderByDecisionKey()
Query.asc() or Query.desc()).DmnDecisionQuery orderByDecisionId()
Query.asc() or Query.desc()).DmnDecisionQuery orderByDecisionVersion()
Query.asc() or Query.desc()).DmnDecisionQuery orderByDecisionName()
Query.asc() or Query.desc()).DmnDecisionQuery orderByDeploymentId()
Query.asc() or Query.desc()).DmnDecisionQuery orderByTenantId()
Query.asc() or Query.desc()).DmnDecisionQuery orderByDecisionType()
Query.asc() or Query.desc()).Copyright © 2020 Flowable. All rights reserved.