public interface DmnDeploymentQuery extends Query<DmnDeploymentQuery,DmnDeployment>
DmnDeployments.
Note that it is impossible to retrieve the deployment resources through the results of this operation, since that would cause a huge transfer of (possibly) unneeded bytes over the wire.
To retrieve the actual bytes of a deployment resource use the operations on the DmnRepositoryService.getDeploymentResourceNames(String) and
DmnRepositoryService.getResourceAsStream(String, String)Query.NullHandlingOnOrder| Modifier and Type | Method and Description |
|---|---|
DmnDeploymentQuery |
decisionKey(String key)
Only select deployments with the given decision key.
|
DmnDeploymentQuery |
decisionKeyLike(String keyLike)
Only select deployments with a decision key like the given string.
|
DmnDeploymentQuery |
deploymentCategory(String category)
Only select deployments with the given category.
|
DmnDeploymentQuery |
deploymentCategoryNotEquals(String categoryNotEquals)
Only select deployments that have a different category then the given one.
|
DmnDeploymentQuery |
deploymentId(String deploymentId)
Only select deployments with the given deployment id.
|
DmnDeploymentQuery |
deploymentName(String name)
Only select deployments with the given name.
|
DmnDeploymentQuery |
deploymentNameLike(String nameLike)
Only select deployments with a name like the given string.
|
DmnDeploymentQuery |
deploymentTenantId(String tenantId)
Only select deployment that have the given tenant id.
|
DmnDeploymentQuery |
deploymentTenantIdLike(String tenantIdLike)
Only select deployments with a tenant id like the given one.
|
DmnDeploymentQuery |
deploymentWithoutTenantId()
Only select deployments that do not have a tenant id.
|
DmnDeploymentQuery |
orderByDeploymentId()
Order by deployment id (needs to be followed by
Query.asc() or Query.desc()). |
DmnDeploymentQuery |
orderByDeploymentName()
Order by deployment name (needs to be followed by
Query.asc() or Query.desc()). |
DmnDeploymentQuery |
orderByDeploymentTime()
Order by deployment time (needs to be followed by
Query.asc() or Query.desc()). |
DmnDeploymentQuery |
orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc()). |
DmnDeploymentQuery |
parentDeploymentId(String parentDeploymentId)
Only select deployment that have the given parent deployment id.
|
DmnDeploymentQuery |
parentDeploymentIdLike(String parentDeploymentIdLike)
Only select deployments with a parent deployment id like the given one.
|
DmnDeploymentQuery deploymentId(String deploymentId)
DmnDeploymentQuery deploymentName(String name)
DmnDeploymentQuery deploymentNameLike(String nameLike)
DmnDeploymentQuery deploymentCategory(String category)
DmnDeploymentBuilder.category(String)DmnDeploymentQuery deploymentCategoryNotEquals(String categoryNotEquals)
DmnDeploymentBuilder.category(String)DmnDeploymentQuery deploymentTenantId(String tenantId)
DmnDeploymentQuery deploymentTenantIdLike(String tenantIdLike)
DmnDeploymentQuery deploymentWithoutTenantId()
DmnDeploymentQuery parentDeploymentId(String parentDeploymentId)
DmnDeploymentQuery parentDeploymentIdLike(String parentDeploymentIdLike)
DmnDeploymentQuery decisionKey(String key)
DmnDeploymentQuery decisionKeyLike(String keyLike)
DmnDeploymentQuery orderByDeploymentId()
Query.asc() or Query.desc()).DmnDeploymentQuery orderByDeploymentName()
Query.asc() or Query.desc()).DmnDeploymentQuery orderByDeploymentTime()
Query.asc() or Query.desc()).DmnDeploymentQuery orderByTenantId()
Query.asc() or Query.desc()).Copyright © 2020 Flowable. All rights reserved.