| Package | Description | 
|---|---|
| org.camunda.bpm.engine | 
 Public API of the camunda BPM 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 DeploymentsRuntimeService:
    For starting and searching ProcessInstancesTaskService:
    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 execution 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.camunda.bpm.engine.impl | 
 API implementation classes, which shouldn't directly be used by end-users. 
 | 
| org.camunda.bpm.engine.repository | 
 Classes related to the  
RepositoryService. | 
| org.camunda.bpm.engine.rest.dto.repository | 
| Modifier and Type | Method and Description | 
|---|---|
DeploymentQuery | 
RepositoryService.createDeploymentQuery()
Query process definitions. 
 | 
| Modifier and Type | Class and Description | 
|---|---|
class  | 
DeploymentQueryImpl  | 
| Modifier and Type | Method and Description | 
|---|---|
DeploymentQuery | 
RepositoryServiceImpl.createDeploymentQuery()  | 
DeploymentQuery | 
DeploymentQueryImpl.deploymentAfter(Date after)  | 
DeploymentQuery | 
DeploymentQueryImpl.deploymentBefore(Date before)  | 
DeploymentQuery | 
DeploymentQueryImpl.deploymentSource(String source)  | 
DeploymentQuery | 
DeploymentQueryImpl.includeDeploymentsWithoutTenantId()  | 
DeploymentQuery | 
DeploymentQueryImpl.orderByDeploymentId()  | 
DeploymentQuery | 
DeploymentQueryImpl.orderByDeploymenTime()  | 
DeploymentQuery | 
DeploymentQueryImpl.orderByDeploymentName()  | 
DeploymentQuery | 
DeploymentQueryImpl.orderByDeploymentTime()  | 
DeploymentQuery | 
DeploymentQueryImpl.orderByTenantId()  | 
DeploymentQuery | 
DeploymentQueryImpl.tenantIdIn(String... tenantIds)  | 
DeploymentQuery | 
DeploymentQueryImpl.withoutTenantId()  | 
| Modifier and Type | Method and Description | 
|---|---|
DeploymentQuery | 
DeploymentQuery.deploymentAfter(Date after)
Only select deployments deployed after the given date 
 | 
DeploymentQuery | 
DeploymentQuery.deploymentBefore(Date before)
Only select deployments deployed before the given date 
 | 
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.deploymentSource(String source)
If the given  
source is null,
 then deployments are returned where source is equal to null. | 
DeploymentQuery | 
DeploymentQuery.includeDeploymentsWithoutTenantId()
Select deployments which have no tenant id. 
 | 
DeploymentQuery | 
DeploymentQuery.orderByDeploymentId()
Order by deployment id (needs to be followed by  
Query.asc() or Query.desc()). | 
DeploymentQuery | 
DeploymentQuery.orderByDeploymenTime()
Deprecated. 
 
Use  
orderByDeploymentTime() instead | 
DeploymentQuery | 
DeploymentQuery.orderByDeploymentName()
Order by deployment name (needs to be followed by  
Query.asc() or Query.desc()). | 
DeploymentQuery | 
DeploymentQuery.orderByDeploymentTime()
Order by deployment time (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.tenantIdIn(String... tenantIds)
Only select deployments with one of the given tenant ids. 
 | 
DeploymentQuery | 
DeploymentQuery.withoutTenantId()
Only select deployments which have no tenant id. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
protected DeploymentQuery | 
DeploymentQueryDto.createNewQuery(ProcessEngine engine)  | 
| Modifier and Type | Method and Description | 
|---|---|
protected void | 
DeploymentQueryDto.applyFilters(DeploymentQuery query)  | 
protected void | 
DeploymentQueryDto.applySortBy(DeploymentQuery query,
           String sortBy,
           Map<String,Object> parameters,
           ProcessEngine engine)  | 
Copyright © 2018. All rights reserved.