Uses of Interface
org.camunda.bpm.engine.ProcessEngineServices

Packages that use ProcessEngineServices
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.delegate Interfaces used to include Java code in a process as the behavior of an activity or as a listener to process events with JavaDelegates. 
org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users. 
org.camunda.bpm.engine.impl.cmmn.entity.runtime   
org.camunda.bpm.engine.impl.cmmn.execution   
org.camunda.bpm.engine.impl.persistence.entity   
org.camunda.bpm.engine.impl.pvm.runtime   
org.camunda.bpm.engine.impl.variable.listener   
org.camunda.bpm.engine.test Helper classes for testing processes. 
 

Uses of ProcessEngineServices in org.camunda.bpm.engine
 

Subinterfaces of ProcessEngineServices in org.camunda.bpm.engine
 interface ProcessEngine
          Provides access to all the services that expose the BPM and workflow operations.
 

Uses of ProcessEngineServices in org.camunda.bpm.engine.delegate
 

Methods in org.camunda.bpm.engine.delegate that return ProcessEngineServices
 ProcessEngineServices ProcessEngineServicesAware.getProcessEngineServices()
          Returns the ProcessEngineServices providing access to the public API of the process engine.
 

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

Classes in org.camunda.bpm.engine.impl that implement ProcessEngineServices
 class ProcessEngineImpl
           
 

Uses of ProcessEngineServices in org.camunda.bpm.engine.impl.cmmn.entity.runtime
 

Methods in org.camunda.bpm.engine.impl.cmmn.entity.runtime that return ProcessEngineServices
 ProcessEngineServices CaseExecutionEntity.getProcessEngineServices()
           
 

Uses of ProcessEngineServices in org.camunda.bpm.engine.impl.cmmn.execution
 

Methods in org.camunda.bpm.engine.impl.cmmn.execution that return ProcessEngineServices
 ProcessEngineServices CaseExecutionImpl.getProcessEngineServices()
           
 

Uses of ProcessEngineServices in org.camunda.bpm.engine.impl.persistence.entity
 

Methods in org.camunda.bpm.engine.impl.persistence.entity that return ProcessEngineServices
 ProcessEngineServices ExecutionEntity.getProcessEngineServices()
           
 ProcessEngineServices TaskEntity.getProcessEngineServices()
           
 

Uses of ProcessEngineServices in org.camunda.bpm.engine.impl.pvm.runtime
 

Methods in org.camunda.bpm.engine.impl.pvm.runtime that return ProcessEngineServices
 ProcessEngineServices ExecutionImpl.getProcessEngineServices()
           
 

Uses of ProcessEngineServices in org.camunda.bpm.engine.impl.variable.listener
 

Methods in org.camunda.bpm.engine.impl.variable.listener that return ProcessEngineServices
 ProcessEngineServices DelegateCaseVariableInstanceImpl.getProcessEngineServices()
           
 

Uses of ProcessEngineServices in org.camunda.bpm.engine.test
 

Classes in org.camunda.bpm.engine.test that implement ProcessEngineServices
 class ProcessEngineRule
          Convenience for ProcessEngine and services initialization in the form of a JUnit rule.
 



Copyright © 2017 camunda services GmbH. All rights reserved.