Interface DecisionRequirementsDefinitionQuery
- All Superinterfaces:
Query<DecisionRequirementsDefinitionQuery,
DecisionRequirementsDefinition>
- All Known Implementing Classes:
DecisionRequirementsDefinitionQueryImpl
public interface DecisionRequirementsDefinitionQuery
extends Query<DecisionRequirementsDefinitionQuery,DecisionRequirementsDefinition>
-
Method Summary
Modifier and TypeMethodDescriptiondecisionRequirementsDefinitionCategory
(String category) Only select decision requirements definition with the given category.decisionRequirementsDefinitionCategoryLike
(String categoryLike) Only select decision requirements definition where the category matches the given parameter.Only select decision requirements definition with the given id.Only select decision requirements definition with the given ids.Only select decision requirements definition with the given key.Only select decision requirements definition where the key matches the given parameter.Only select decision requirements definition with the given name.decisionRequirementsDefinitionNameLike
(String nameLike) Only select decision requirements definition where the name matches the given parameter.decisionRequirementsDefinitionResourceName
(String resourceName) Only select decision requirements definition with the given resource name.decisionRequirementsDefinitionResourceNameLike
(String resourceNameLike) Only select decision requirements definition with a resource name like the given.Only select decision requirements definition with a certain version.deploymentId
(String deploymentId) Only select decision requirements definition that are deployed in a deployment with the given deployment id.Select decision requirements definition which have no tenant id.Only select the decision requirements definition which are the latest deployed (i.e.Order by the category of the decision requirements definition (needs to be followed byQuery.asc()
orQuery.desc()
).Order by the id of the decision requirements definition (needs to be followed byQuery.asc()
orQuery.desc()
).Order by decision requirements definition key (needs to be followed byQuery.asc()
orQuery.desc()
).Order by the name of the decision requirements definition (needs to be followed byQuery.asc()
orQuery.desc()
).Order by the version of the decision requirements definition (needs to be followed byQuery.asc()
orQuery.desc()
).Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).tenantIdIn
(String... tenantIds) Only select decision requirements definition with one of the given tenant ids.Only select decision requirements definition which have no tenant id.Methods inherited from interface org.camunda.bpm.engine.query.Query
asc, count, desc, list, listPage, singleResult, unlimitedList
-
Method Details
-
decisionRequirementsDefinitionId
Only select decision requirements definition with the given id.- Parameters:
id
- the id of the decision requirements definition
-
decisionRequirementsDefinitionIdIn
Only select decision requirements definition with the given ids.- Parameters:
ids
- list of decision requirements definition ids
-
decisionRequirementsDefinitionCategory
Only select decision requirements definition with the given category.- Parameters:
category
- the category of the decision requirements definition
-
decisionRequirementsDefinitionCategoryLike
Only select decision requirements definition where the category matches the given parameter. The syntax that should be used is the same as in SQL, e.g., %category%.- Parameters:
categoryLike
- the pattern to match the decision requirements definition category
-
decisionRequirementsDefinitionName
Only select decision requirements definition with the given name.- Parameters:
name
- the name of the decision requirements definition
-
decisionRequirementsDefinitionNameLike
Only select decision requirements definition where the name matches the given parameter. The syntax that should be used is the same as in SQL, e.g., %name%.- Parameters:
nameLike
- the pattern to match the decision requirements definition name
-
decisionRequirementsDefinitionKey
Only select decision requirements definition with the given key.- Parameters:
key
- the key of the decision definition
-
decisionRequirementsDefinitionKeyLike
Only select decision requirements definition where the key matches the given parameter. The syntax that should be used is the same as in SQL, e.g., %key%.- Parameters:
keyLike
- the pattern to match the decision requirements definition key
-
deploymentId
Only select decision requirements definition that are deployed in a deployment with the given deployment id.- Parameters:
deploymentId
- the id of the deployment
-
decisionRequirementsDefinitionVersion
Only select decision requirements definition with a certain version. Particularly useful when used in combination withdecisionRequirementsDefinitionKey(String)
- Parameters:
version
- the version of the decision requirements definition
-
latestVersion
DecisionRequirementsDefinitionQuery latestVersion()Only select the decision requirements definition which are the latest deployed (i.e. which have the highest version number for the given key). Can only be used in combination withdecisionRequirementsDefinitionKey(String)
ordecisionRequirementsDefinitionKeyLike(String)
. Can also be used without any other criteria (i.e. query.latest().list()), which will then give all the latest versions of all the deployed decision requirements definition. -
decisionRequirementsDefinitionResourceName
Only select decision requirements definition with the given resource name.- Parameters:
resourceName
- the name of the resource
-
decisionRequirementsDefinitionResourceNameLike
DecisionRequirementsDefinitionQuery decisionRequirementsDefinitionResourceNameLike(String resourceNameLike) Only select decision requirements definition with a resource name like the given. The syntax that should be used is the same as in SQL, e.g., %resourceName%.- Parameters:
resourceNameLike
- the pattern to match the resource name
-
tenantIdIn
Only select decision requirements definition with one of the given tenant ids. -
withoutTenantId
DecisionRequirementsDefinitionQuery withoutTenantId()Only select decision requirements definition which have no tenant id. -
includeDecisionRequirementsDefinitionsWithoutTenantId
DecisionRequirementsDefinitionQuery includeDecisionRequirementsDefinitionsWithoutTenantId()Select decision requirements definition which have no tenant id. Can be used in combination withtenantIdIn(String...)
. -
orderByDecisionRequirementsDefinitionCategory
DecisionRequirementsDefinitionQuery orderByDecisionRequirementsDefinitionCategory()Order by the category of the decision requirements definition (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDecisionRequirementsDefinitionKey
DecisionRequirementsDefinitionQuery orderByDecisionRequirementsDefinitionKey()Order by decision requirements definition key (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDecisionRequirementsDefinitionId
DecisionRequirementsDefinitionQuery orderByDecisionRequirementsDefinitionId()Order by the id of the decision requirements definition (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDecisionRequirementsDefinitionVersion
DecisionRequirementsDefinitionQuery orderByDecisionRequirementsDefinitionVersion()Order by the version of the decision requirements definition (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDecisionRequirementsDefinitionName
DecisionRequirementsDefinitionQuery orderByDecisionRequirementsDefinitionName()Order by the name of the decision requirements definition (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDeploymentId
DecisionRequirementsDefinitionQuery orderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByTenantId
DecisionRequirementsDefinitionQuery orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
). Note that the ordering of decision requirements definition without tenant id is database-specific.
-