Package org.flowable.app.api.repository
Interface AppDeploymentBaseQuery<T extends AppDeploymentBaseQuery<T,C>,C extends AppDeployment>
- All Superinterfaces:
Query<T,
C>
- All Known Subinterfaces:
AppDeploymentQuery
public interface AppDeploymentBaseQuery<T extends AppDeploymentBaseQuery<T,C>,C extends AppDeployment>
extends Query<T,C>
- Author:
- Tijs Rademakers
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.flowable.common.engine.api.query.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()
).
-
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
T deploymentWithoutTenantId()Only select deployments that do not have a tenant id. -
latest
T latest()Only select deployments where the deployment time is the latest value. Can only be used together with the deployment key. -
orderByDeploymentId
T orderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDeploymentName
T orderByDeploymentName()Order by deployment name (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByDeploymentTime
T orderByDeploymentTime()Order by deployment time (needs to be followed byQuery.asc()
orQuery.desc()
). -
orderByTenantId
T orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()
orQuery.desc()
).
-