Uses of Interface
org.flowable.app.api.repository.AppDeploymentQuery
Packages that use AppDeploymentQuery
-
Uses of AppDeploymentQuery in org.flowable.app.api
Methods in org.flowable.app.api that return AppDeploymentQuery -
Uses of AppDeploymentQuery in org.flowable.app.api.repository
Methods in org.flowable.app.api.repository that return AppDeploymentQueryModifier and TypeMethodDescriptionAppDeploymentQuery.deploymentCategory(String category) Only select deployments with the given category.AppDeploymentQuery.deploymentCategoryNotEquals(String categoryNotEquals) Only select deployments that have a different category then the given one.AppDeploymentQuery.deploymentId(String deploymentId) Only select deployments with the given deployment id.AppDeploymentQuery.deploymentIds(List<String> deploymentIds) Only select deployments with the given deployment ids.AppDeploymentQuery.deploymentKey(String key) Only select deployments with the given key.AppDeploymentQuery.deploymentName(String name) Only select deployments with the given name.AppDeploymentQuery.deploymentNameLike(String nameLike) Only select deployments with a name like the given string.AppDeploymentQuery.deploymentTenantId(String tenantId) Only select deployment that have the given tenant id.AppDeploymentQuery.deploymentTenantIdLike(String tenantIdLike) Only select deployments with a tenant id like the given one.AppDeploymentQuery.deploymentWithoutTenantId()Only select deployments that do not have a tenant id.AppDeploymentQuery.latest()Only select deployments where the deployment time is the latest value.AppDeploymentQuery.orderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()orQuery.desc()).AppDeploymentQuery.orderByDeploymentName()Order by deployment name (needs to be followed byQuery.asc()orQuery.desc()).AppDeploymentQuery.orderByDeploymentTime()Order by deployment time (needs to be followed byQuery.asc()orQuery.desc()).AppDeploymentQuery.orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).