Package org.camunda.bpm.engine.delegate
Interface CmmnModelExecutionContext
-
- All Known Subinterfaces:
CmmnActivityExecution
,CmmnCaseInstance
,DelegateCaseExecution
- All Known Implementing Classes:
CaseExecutionEntity
,CaseExecutionImpl
,CmmnExecution
public interface CmmnModelExecutionContext
Implemented by classes which provide access to theCmmnModelInstance
and the currently executedCmmnElement
.- Author:
- Roman Smirnov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CmmnElement
getCmmnModelElementInstance()
Returns the currently executed Element in the Cmmn Model.CmmnModelInstance
getCmmnModelInstance()
Returns theCmmnModelInstance
for the currently executed Cmmn Model
-
-
-
Method Detail
-
getCmmnModelInstance
CmmnModelInstance getCmmnModelInstance()
Returns theCmmnModelInstance
for the currently executed Cmmn Model- Returns:
- the current
CmmnModelInstance
-
getCmmnModelElementInstance
CmmnElement getCmmnModelElementInstance()
Returns the currently executed Element in the Cmmn Model. This method returns a
CmmnElement
which may be casted to the concrete type of the Cmmn Model Element currently executed.- Returns:
- the
CmmnElement
corresponding to the current Cmmn Model Element
-
-