public interface CmmnDeploymentQuery extends Query<CmmnDeploymentQuery,CmmnDeployment>
CmmnDeployments.
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
CmmnRepositoryService.getDeploymentResourceNames(String) and
CmmnRepositoryService.getResourceAsStream(String, String)Query.NullHandlingOnOrder| Modifier and Type | Method and Description |
|---|---|
CmmnDeploymentQuery |
deploymentCategory(String category)
Only select deployments with the given category.
|
CmmnDeploymentQuery |
deploymentCategoryNotEquals(String categoryNotEquals)
Only select deployments that have a different category then the given one.
|
CmmnDeploymentQuery |
deploymentId(String deploymentId)
Only select deployments with the given deployment id.
|
CmmnDeploymentQuery |
deploymentIds(List<String> deploymentIds)
Only select deployments with the given deployment ids.
|
CmmnDeploymentQuery |
deploymentKey(String key)
Only select deployments with the given key.
|
CmmnDeploymentQuery |
deploymentName(String name)
Only select deployments with the given name.
|
CmmnDeploymentQuery |
deploymentNameLike(String nameLike)
Only select deployments with a name like the given string.
|
CmmnDeploymentQuery |
deploymentTenantId(String tenantId)
Only select deployment that have the given tenant id.
|
CmmnDeploymentQuery |
deploymentTenantIdLike(String tenantIdLike)
Only select deployments with a tenant id like the given one.
|
CmmnDeploymentQuery |
deploymentWithoutTenantId()
Only select deployments that do not have a tenant id.
|
CmmnDeploymentQuery |
latest()
Only select deployments where the deployment time is the latest value.
|
CmmnDeploymentQuery |
orderByDeploymentId()
Order by deployment id (needs to be followed by
Query.asc() or Query.desc()). |
CmmnDeploymentQuery |
orderByDeploymenTime()
Order by deployment time (needs to be followed by
Query.asc() or Query.desc()). |
CmmnDeploymentQuery |
orderByDeploymentName()
Order by deployment name (needs to be followed by
Query.asc() or Query.desc()). |
CmmnDeploymentQuery |
orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or Query.desc()). |
CmmnDeploymentQuery |
parentDeploymentId(String parentDeploymentId)
Only select deployment that have the given parent deployment id.
|
CmmnDeploymentQuery |
parentDeploymentIdLike(String parentDeploymentIdLike)
Only select deployments with a parent deployment id like the given one.
|
CmmnDeploymentQuery deploymentId(String deploymentId)
CmmnDeploymentQuery deploymentIds(List<String> deploymentIds)
CmmnDeploymentQuery deploymentName(String name)
CmmnDeploymentQuery deploymentNameLike(String nameLike)
CmmnDeploymentQuery deploymentCategory(String category)
CmmnDeploymentBuilder.category(String)CmmnDeploymentQuery deploymentCategoryNotEquals(String categoryNotEquals)
CmmnDeploymentBuilder.category(String)CmmnDeploymentQuery deploymentKey(String key)
CmmnDeploymentBuilder.key(String)CmmnDeploymentQuery deploymentTenantId(String tenantId)
CmmnDeploymentQuery deploymentTenantIdLike(String tenantIdLike)
CmmnDeploymentQuery deploymentWithoutTenantId()
CmmnDeploymentQuery parentDeploymentId(String parentDeploymentId)
CmmnDeploymentQuery parentDeploymentIdLike(String parentDeploymentIdLike)
CmmnDeploymentQuery latest()
CmmnDeploymentQuery orderByDeploymentId()
Query.asc() or Query.desc()).CmmnDeploymentQuery orderByDeploymentName()
Query.asc() or Query.desc()).CmmnDeploymentQuery orderByDeploymenTime()
Query.asc() or Query.desc()).CmmnDeploymentQuery orderByTenantId()
Query.asc() or Query.desc()).Copyright © 2018 Flowable. All rights reserved.