Package org.flowable.engine.repository
Interface DeploymentQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<DeploymentQuery,
Deployment>
- All Known Implementing Classes:
DeploymentQueryImpl
public interface DeploymentQuery
extends org.flowable.common.engine.api.query.Query<DeploymentQuery,Deployment>
Allows programmatic querying of
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)
- Author:
- Tom Baeyens, Joram Barrez
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.Query
org.flowable.common.engine.api.query.Query.NullHandlingOnOrder
-
Method Summary
Modifier and TypeMethodDescriptiondeploymentCategory
(String category) Only select deployments with the given category.deploymentCategoryLike
(String categoryLike) Only select deployments with a category like the given string.deploymentCategoryNotEquals
(String categoryNotEquals) Only select deployments that have a different category then the given one.deploymentDerivedFrom
(String deploymentId) Only select deployments that are derived from the given deployment.deploymentEngineVersion
(String engineVersion) Only select deployment that have the given engine version.deploymentId
(String deploymentId) Only select deployments with the given deployment id.deploymentIds
(List<String> deploymentId) Only select deployments with an id in the given set of ids.deploymentKey
(String key) Only select deployments with the given key.deploymentKeyLike
(String keyLike) Only select deployments with a key like the given string.deploymentName
(String name) Only select deployments with the given name.deploymentNameLike
(String nameLike) Only select deployments with a name like the given string.deploymentTenantId
(String tenantId) Only select deployment that have the given tenant id.deploymentTenantIdLike
(String tenantIdLike) Only select deployments with a tenant id like the given one.Only select deployments that do not have a tenant id.latest()
Only select deployments where the deployment time is the latest value.Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
).Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).parentDeploymentId
(String parentDeploymentId) Only select deployments that have the given parent deployment id.parentDeploymentIdLike
(String parentDeploymentIdLike) Only select deployments that have a parent deployment id like the given value.parentDeploymentIds
(List<String> parentDeploymentIds) Only select deployments with a parent deployment id that is the same as one of the given deployment identifiers.Only select deployments with the given process definition key.processDefinitionKeyLike
(String keyLike) Only select deployments with a process definition key like the given string.Methods inherited from interface org.flowable.common.engine.api.query.Query
asc, count, desc, list, listPage, orderBy, orderBy, singleResult
-
Method Details
-
deploymentId
Only select deployments with the given deployment id. -
deploymentIds
Only select deployments with an id in the given set of ids. -
deploymentName
Only select deployments with the given name. -
deploymentNameLike
Only select deployments with a name like the given string. -
deploymentCategory
Only select deployments with the given category.- See Also:
-
deploymentCategoryLike
Only select deployments with a category like the given string. -
deploymentCategoryNotEquals
Only select deployments that have a different category then the given one.- See Also:
-
deploymentKey
Only select deployments with the given key. -
deploymentKeyLike
Only select deployments with a key like the given string. -
deploymentTenantId
Only select deployment that have the given tenant id. -
deploymentTenantIdLike
Only select deployments with a tenant id like the given one. -
deploymentWithoutTenantId
DeploymentQuery deploymentWithoutTenantId()Only select deployments that do not have a tenant id. -
deploymentEngineVersion
Only select deployment that have the given engine version. -
deploymentDerivedFrom
Only select deployments that are derived from the given deployment. -
parentDeploymentId
Only select deployments that have the given parent deployment id. -
parentDeploymentIdLike
Only select deployments that have a parent deployment id like the given value. -
parentDeploymentIds
Only select deployments with a parent deployment id that is the same as one of the given deployment identifiers. -
processDefinitionKey
Only select deployments with the given process definition key. -
processDefinitionKeyLike
Only select deployments with a process definition key like the given string. -
latest
DeploymentQuery latest()Only select deployments where the deployment time is the latest value. Can only be used together with the deployment key. -
orderByDeploymentId
DeploymentQuery orderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDeploymentName
DeploymentQuery orderByDeploymentName()Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDeploymentTime
DeploymentQuery orderByDeploymentTime()Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByTenantId
DeploymentQuery orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).
-