Package org.camunda.bpm.engine.delegate
Interface ProcessEngineServicesAware
- All Known Subinterfaces:
ActivityExecution
,CmmnActivityExecution
,CmmnCaseInstance
,DelegateCaseExecution
,DelegateCaseVariableInstance
,DelegateExecution
,DelegateTask
,DelegateVariableInstance<T>
- All Known Implementing Classes:
CaseExecutionEntity
,CaseExecutionImpl
,CmmnExecution
,DelegateCaseVariableInstanceImpl
,ExecutionEntity
,ExecutionImpl
,PvmExecutionImpl
,TaskEntity
public interface ProcessEngineServicesAware
Interface providing access to the ProcessEngineServices
from Java
delegation code.
- Author:
- Daniel Meyer
-
Method Summary
Modifier and TypeMethodDescriptionReturns theProcessEngine
providing access to the public API of the process engine.Returns theProcessEngineServices
providing access to the public API of the process engine.
-
Method Details
-
getProcessEngineServices
ProcessEngineServices getProcessEngineServices()Returns theProcessEngineServices
providing access to the public API of the process engine.- Returns:
- the
ProcessEngineServices
.
-
getProcessEngine
ProcessEngine getProcessEngine()Returns theProcessEngine
providing access to the public API of the process engine.- Returns:
- the
ProcessEngine
.
-