public interface DeploymentQuery extends Query<DeploymentQuery,Deployment>
Deployment
s.
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 RepositoryService.getDeploymentResourceNames(String)
and
RepositoryService.getResourceAsStream(String, String)
Modifier and Type | Method and Description |
---|---|
DeploymentQuery |
deploymentCategory(String category)
Only select deployments with the given category.
|
DeploymentQuery |
deploymentCategoryNotEquals(String categoryNotEquals)
Only select deployments that have a different category then the given one.
|
DeploymentQuery |
deploymentId(String deploymentId)
Only select deployments with the given deployment id.
|
DeploymentQuery |
deploymentName(String name)
Only select deployments with the given name.
|
DeploymentQuery |
deploymentNameLike(String nameLike)
Only select deployments with a name like the given string.
|
DeploymentQuery |
deploymentTenantId(String tenantId)
Only select deployment that have the given tenant id.
|
DeploymentQuery |
deploymentTenantIdLike(String tenantIdLike)
Only select deployments with a tenant id like the given one.
|
DeploymentQuery |
deploymentWithoutTenantId()
Only select deployments that do not have a tenant id.
|
DeploymentQuery |
orderByDeploymentId()
Order by deployment id (needs to be followed by
Query.asc() or
Query.desc() ). |
DeploymentQuery |
orderByDeploymenTime()
Order by deployment time (needs to be followed by
Query.asc() or
Query.desc() ). |
DeploymentQuery |
orderByDeploymentName()
Order by deployment name (needs to be followed by
Query.asc() or
Query.desc() ). |
DeploymentQuery |
orderByTenantId()
Order by tenant id (needs to be followed by
Query.asc() or
Query.desc() ). |
DeploymentQuery |
processDefinitionKey(String key)
Only select deployments with the given process definition key.
|
DeploymentQuery |
processDefinitionKeyLike(String keyLike)
Only select deployments with a process definition key like the given
string.
|
DeploymentQuery deploymentId(String deploymentId)
DeploymentQuery deploymentName(String name)
DeploymentQuery deploymentNameLike(String nameLike)
DeploymentQuery deploymentCategory(String category)
DeploymentBuilder.category(String)
DeploymentQuery deploymentCategoryNotEquals(String categoryNotEquals)
DeploymentBuilder.category(String)
DeploymentQuery deploymentTenantId(String tenantId)
DeploymentQuery deploymentTenantIdLike(String tenantIdLike)
DeploymentQuery deploymentWithoutTenantId()
DeploymentQuery processDefinitionKey(String key)
DeploymentQuery processDefinitionKeyLike(String keyLike)
DeploymentQuery orderByDeploymentId()
Query.asc()
or
Query.desc()
).DeploymentQuery orderByDeploymentName()
Query.asc()
or
Query.desc()
).DeploymentQuery orderByDeploymenTime()
Query.asc()
or
Query.desc()
).DeploymentQuery orderByTenantId()
Query.asc()
or
Query.desc()
).Copyright © 2016 Alfresco. All rights reserved.