Uses of Interface
org.activiti.engine.repository.DeploymentQuery
Packages that use DeploymentQuery
-
Uses of DeploymentQuery in org.activiti.engine
Methods in org.activiti.engine that return DeploymentQuery -
Uses of DeploymentQuery in org.activiti.engine.impl
Classes in org.activiti.engine.impl that implement DeploymentQueryMethods in org.activiti.engine.impl that return DeploymentQueryModifier and TypeMethodDescriptionRepositoryServiceImpl.createDeploymentQuery()DeploymentQueryImpl.latestVersion()DeploymentQueryImpl.orderByDeploymentId()DeploymentQueryImpl.orderByDeploymenTime()DeploymentQueryImpl.orderByDeploymentName()DeploymentQueryImpl.orderByTenantId() -
Uses of DeploymentQuery in org.activiti.engine.repository
Methods in org.activiti.engine.repository that return DeploymentQueryModifier and TypeMethodDescriptionDeploymentQuery.deploymentCategory(String category) Only select deployments with the given category.DeploymentQuery.deploymentCategoryLike(String categoryLike) Only select deployments with a category like the given string.DeploymentQuery.deploymentCategoryNotEquals(String categoryNotEquals) Only select deployments that have a different category then the given one.DeploymentQuery.deploymentId(String deploymentId) Only select deployments with the given deployment id.DeploymentQuery.deploymentKey(String key) Only select deployments with the given key.DeploymentQuery.deploymentKeyLike(String keyLike) Only select deployments with a key like the given string.DeploymentQuery.deploymentName(String name) Only select deployments with the given name.DeploymentQuery.deploymentNameLike(String nameLike) Only select deployments with a name like the given string.DeploymentQuery.deploymentTenantId(String tenantId) Only select deployment that have the given tenant id.DeploymentQuery.deploymentTenantIdLike(String tenantIdLike) Only select deployments with a tenant id like the given one.DeploymentQuery.deploymentWithoutTenantId()Only select deployments that do not have a tenant id.DeploymentQuery.latest()Only select deployments where the deployment time is the latest value.DeploymentQuery.latestVersion()Only select deployments where the deployment version is the latest valueDeploymentQuery.orderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQuery.orderByDeploymenTime()Order by deployment time (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQuery.orderByDeploymentName()Order by deployment name (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQuery.orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQuery.processDefinitionKey(String key) Only select deployments with the given process definition key.DeploymentQuery.processDefinitionKeyLike(String keyLike) Only select deployments with a process definition key like the given string.