Uses of Interface
org.camunda.bpm.engine.ProcessEngineServices
-
Packages that use ProcessEngineServices Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s 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 withJavaDelegate
s.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.spring org.camunda.bpm.engine.test Helper classes for testing processes.org.camunda.bpm.qa.upgrade -
-
Uses of ProcessEngineServices in org.camunda.bpm.engine
Subinterfaces of ProcessEngineServices in org.camunda.bpm.engine Modifier and Type Interface Description 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 Modifier and Type Method Description ProcessEngineServices
ProcessEngineServicesAware. getProcessEngineServices()
Returns theProcessEngineServices
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 Modifier and Type Class Description 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 Modifier and Type Method Description 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 Modifier and Type Method Description 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 Modifier and Type Method Description 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 Modifier and Type Method Description 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 Modifier and Type Method Description ProcessEngineServices
DelegateCaseVariableInstanceImpl. getProcessEngineServices()
-
Uses of ProcessEngineServices in org.camunda.bpm.engine.spring
Classes in org.camunda.bpm.engine.spring that implement ProcessEngineServices Modifier and Type Class Description class
SpringProcessEngineServicesConfiguration
Exposes all camunda process engine services as beans. -
Uses of ProcessEngineServices in org.camunda.bpm.engine.test
Classes in org.camunda.bpm.engine.test that implement ProcessEngineServices Modifier and Type Class Description class
ProcessEngineRule
Convenience for ProcessEngine and services initialization in the form of a JUnit rule. -
Uses of ProcessEngineServices in org.camunda.bpm.qa.upgrade
Classes in org.camunda.bpm.qa.upgrade that implement ProcessEngineServices Modifier and Type Class Description class
UpgradeTestRule
-