Uses of Interface
org.camunda.bpm.engine.repository.DeploymentQuery

Packages that use DeploymentQuery
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 Deployments
RuntimeService: For starting and searching ProcessInstances
TaskService: Exposes operations to manage human (standalone) Tasks, such as claiming, completing and assigning tasks
IdentityService: Used for managing Users, Groups and the relations between them
ManagementService: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService: 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
 

Uses of DeploymentQuery in org.camunda.bpm.engine
 

Methods in org.camunda.bpm.engine that return DeploymentQuery
 DeploymentQuery RepositoryService.createDeploymentQuery()
          Query process definitions.
 

Uses of DeploymentQuery in org.camunda.bpm.engine.impl
 

Classes in org.camunda.bpm.engine.impl that implement DeploymentQuery
 class DeploymentQueryImpl
           
 

Methods in org.camunda.bpm.engine.impl that return DeploymentQuery
 DeploymentQuery RepositoryServiceImpl.createDeploymentQuery()
           
 DeploymentQuery DeploymentQueryImpl.deploymentAfter(Date after)
           
 DeploymentQuery DeploymentQueryImpl.deploymentBefore(Date before)
           
 DeploymentQuery DeploymentQueryImpl.orderByDeploymentId()
           
 DeploymentQuery DeploymentQueryImpl.orderByDeploymenTime()
           
 DeploymentQuery DeploymentQueryImpl.orderByDeploymentName()
           
 

Uses of DeploymentQuery in org.camunda.bpm.engine.repository
 

Methods in org.camunda.bpm.engine.repository that return DeploymentQuery
 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.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()).
 



Copyright © 2015 camunda services GmbH. All rights reserved.