Package org.flowable.cmmn.api.repository
Interface CmmnDeploymentQuery
- All Superinterfaces:
org.flowable.common.engine.api.query.Query<CmmnDeploymentQuery,
CmmnDeployment>
public interface CmmnDeploymentQuery
extends org.flowable.common.engine.api.query.Query<CmmnDeploymentQuery,CmmnDeployment>
Allows programmatic querying of
CmmnDeployment
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
CmmnRepositoryService.getDeploymentResourceNames(String)
and
CmmnRepositoryService.getResourceAsStream(String, String)
- Author:
- Tijs Rademakers, 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.deploymentCategoryNotEquals
(String categoryNotEquals) Only select deployments that have a different category then the given one.deploymentId
(String deploymentId) Only select deployments with the given deployment id.deploymentIds
(List<String> deploymentIds) Only select deployments with the given deployment ids.deploymentKey
(String key) Only select deployments with the given key.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 deployment that have the given parent deployment id.parentDeploymentIdLike
(String parentDeploymentIdLike) Only select deployments with a parent deployment id like the given one.parentDeploymentIds
(List<String> parentDeploymentIds) Only select deployments with a parent deployment id that is the same as one of the given deployment identifiers.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 the given deployment 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:
-
deploymentCategoryNotEquals
Only select deployments that have a different category then the given one.- See Also:
-
deploymentKey
Only select deployments with the given key.- See Also:
-
deploymentTenantId
Only select deployment that have the given tenant id. -
deploymentTenantIdLike
Only select deployments with a tenant id like the given one. -
deploymentWithoutTenantId
CmmnDeploymentQuery deploymentWithoutTenantId()Only select deployments that do not have a tenant id. -
parentDeploymentId
Only select deployment that have the given parent deployment id. -
parentDeploymentIdLike
Only select deployments with a parent deployment id like the given one. -
parentDeploymentIds
Only select deployments with a parent deployment id that is the same as one of the given deployment identifiers. -
latest
CmmnDeploymentQuery latest()Only select deployments where the deployment time is the latest value. Can only be used together with the deployment key. -
orderByDeploymentId
CmmnDeploymentQuery orderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDeploymentName
CmmnDeploymentQuery orderByDeploymentName()Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDeploymentTime
CmmnDeploymentQuery orderByDeploymentTime()Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByTenantId
CmmnDeploymentQuery orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).
-