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