| Package | Description | 
|---|---|
| org.activiti.engine | 
 Public API of the Activiti engine. 
Typical usage of the API starts by the creation of a ProcessEngineConfiguration
    (typically based on a configuration file), from which a ProcessEngine can be obtained.Through the services obtained from such a ProcessEngine, BPM and workflow operation 
    can be executed:RepositoryService:  Manages Deployments RuntimeService:  For starting and searching ProcessInstances TaskService:  Exposes operations to manage human (standalone) Tasks, 
    such as claiming, completing and assigning tasksIdentityService:  Used for managing Users, 
    Groups and the relations between themManagementService:  Exposes engine admin and maintenance operations,
    which have no relation to the runtime exection of business processesHistoryService:  Exposes information about ongoing and past process instances.FormService:  Access to form data and rendered forms for starting new process instances and completing tasks. | 
| org.activiti.engine.repository | 
 Classes related to the  
RepositoryService. | 
| Modifier and Type | Method and Description | 
|---|---|
DeploymentQuery | 
RepositoryService.createDeploymentQuery()
Query deployment. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
DeploymentQuery | 
DeploymentQuery.deploymentCategory(String category)
Only select deployments with the given category. 
 | 
DeploymentQuery | 
DeploymentQuery.deploymentCategoryNotEquals(String categoryNotEquals)
Only select deployments that have a different category then the given one. 
 | 
DeploymentQuery | 
DeploymentQuery.deploymentId(String deploymentId)
Only select deployments with the given deployment id. 
 | 
DeploymentQuery | 
DeploymentQuery.deploymentName(String name)
Only select deployments with the given name. 
 | 
DeploymentQuery | 
DeploymentQuery.deploymentNameLike(String nameLike)
Only select deployments with a name like the given string. 
 | 
DeploymentQuery | 
DeploymentQuery.deploymentTenantId(String tenantId)
Only select deployment that have the given tenant id. 
 | 
DeploymentQuery | 
DeploymentQuery.deploymentTenantIdLike(String tenantIdLike)
Only select deployments with a tenant id like the given one. 
 | 
DeploymentQuery | 
DeploymentQuery.deploymentWithoutTenantId()
Only select deployments that do not have a tenant id. 
 | 
DeploymentQuery | 
DeploymentQuery.orderByDeploymentId()
Order by deployment id (needs to be followed by  
Query.asc() or
 Query.desc()). | 
DeploymentQuery | 
DeploymentQuery.orderByDeploymenTime()
Order by deployment time (needs to be followed by  
Query.asc() or
 Query.desc()). | 
DeploymentQuery | 
DeploymentQuery.orderByDeploymentName()
Order by deployment name (needs to be followed by  
Query.asc() or
 Query.desc()). | 
DeploymentQuery | 
DeploymentQuery.orderByTenantId()
Order by tenant id (needs to be followed by  
Query.asc() or
 Query.desc()). | 
DeploymentQuery | 
DeploymentQuery.processDefinitionKey(String key)
Only select deployments with the given process definition key. 
 | 
DeploymentQuery | 
DeploymentQuery.processDefinitionKeyLike(String keyLike)
Only select deployments with a process definition key like the given
 string. 
 | 
Copyright © 2017 Flowable. All rights reserved.