Uses of Interface
org.flowable.cmmn.api.repository.CmmnDeploymentQuery
-
Uses of CmmnDeploymentQuery in org.flowable.cmmn.api
Modifier and TypeMethodDescriptionCmmnRepositoryService.createDeploymentQuery()
Query deployments -
Uses of CmmnDeploymentQuery in org.flowable.cmmn.api.repository
Modifier and TypeMethodDescriptionCmmnDeploymentQuery.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 byQuery.asc()
orQuery.desc()
).CmmnDeploymentQuery.orderByDeploymentName()
Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
).CmmnDeploymentQuery.orderByDeploymentTime()
Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
).CmmnDeploymentQuery.orderByTenantId()
Order by tenant id (needs to be followed byQuery.asc()
orQuery.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.parentDeploymentIds
(List<String> parentDeploymentIds) Only select deployments with a parent deployment id that is the same as one of the given deployment identifiers.