Uses of Interface
org.activiti.engine.repository.DeploymentQuery
-
Packages that use DeploymentQuery Package Description org.activiti.engine Public API of the Activiti engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration(typically based on a configuration file), from which aProcessEnginecan be obtained.
Through the services obtained from such aProcessEngine, BPM and workflow operation can be executed:
RepositoryService: ManagesDeployments
RuntimeService: For starting and searchingProcessInstances
TaskService: Exposes operations to manage human (standalone)Tasks, such as claiming, completing and assigning tasks
org.activiti.engine.IdentityService: Used for managingorg.activiti.engine.identity.Users,org.activiti.engine.identity.Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime exection of business processes
HistoryService: Exposes information about ongoing and past process instances.
org.activiti.engine.FormService: Access to form data and rendered forms for starting new process instances and completing tasks.org.activiti.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.activiti.engine.repository Classes related to theRepositoryService. -
-
Uses of DeploymentQuery in org.activiti.engine
Methods in org.activiti.engine that return DeploymentQuery Modifier and Type Method Description DeploymentQueryRepositoryService. createDeploymentQuery()Query deployment. -
Uses of DeploymentQuery in org.activiti.engine.impl
Classes in org.activiti.engine.impl that implement DeploymentQuery Modifier and Type Class Description classDeploymentQueryImplMethods in org.activiti.engine.impl that return DeploymentQuery Modifier and Type Method Description DeploymentQueryRepositoryServiceImpl. createDeploymentQuery()DeploymentQueryDeploymentQueryImpl. orderByDeploymentId()DeploymentQueryDeploymentQueryImpl. orderByDeploymenTime()DeploymentQueryDeploymentQueryImpl. orderByDeploymentName()DeploymentQueryDeploymentQueryImpl. orderByTenantId() -
Uses of DeploymentQuery in org.activiti.engine.repository
Methods in org.activiti.engine.repository that return DeploymentQuery Modifier and Type Method Description DeploymentQueryDeploymentQuery. deploymentCategory(java.lang.String category)Only select deployments with the given category.DeploymentQueryDeploymentQuery. deploymentCategoryLike(java.lang.String categoryLike)Only select deployments with a category like the given string.DeploymentQueryDeploymentQuery. deploymentCategoryNotEquals(java.lang.String categoryNotEquals)Only select deployments that have a different category then the given one.DeploymentQueryDeploymentQuery. deploymentId(java.lang.String deploymentId)Only select deployments with the given deployment id.DeploymentQueryDeploymentQuery. deploymentKey(java.lang.String key)Only select deployments with the given key.DeploymentQueryDeploymentQuery. deploymentKeyLike(java.lang.String keyLike)Only select deployments with a key like the given string.DeploymentQueryDeploymentQuery. deploymentName(java.lang.String name)Only select deployments with the given name.DeploymentQueryDeploymentQuery. deploymentNameLike(java.lang.String nameLike)Only select deployments with a name like the given string.DeploymentQueryDeploymentQuery. deploymentTenantId(java.lang.String tenantId)Only select deployment that have the given tenant id.DeploymentQueryDeploymentQuery. deploymentTenantIdLike(java.lang.String tenantIdLike)Only select deployments with a tenant id like the given one.DeploymentQueryDeploymentQuery. deploymentWithoutTenantId()Only select deployments that do not have a tenant id.DeploymentQueryDeploymentQuery. latest()Only select deployments where the deployment time is the latest value.DeploymentQueryDeploymentQuery. orderByDeploymentId()Order by deployment id (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQueryDeploymentQuery. orderByDeploymenTime()Order by deployment time (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQueryDeploymentQuery. orderByDeploymentName()Order by deployment name (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQueryDeploymentQuery. orderByTenantId()Order by tenant id (needs to be followed byQuery.asc()orQuery.desc()).DeploymentQueryDeploymentQuery. processDefinitionKey(java.lang.String key)Only select deployments with the given process definition key.DeploymentQueryDeploymentQuery. processDefinitionKeyLike(java.lang.String keyLike)Only select deployments with a process definition key like the given string.
-