Package org.camunda.bpm.engine.delegate
Interface DelegateCaseVariableInstance
-
- All Superinterfaces:
DelegateVariableInstance<DelegateCaseExecution>
,ProcessEngineServicesAware
,VariableInstance
- All Known Implementing Classes:
DelegateCaseVariableInstanceImpl
public interface DelegateCaseVariableInstance extends DelegateVariableInstance<DelegateCaseExecution>
- Author:
- Thorben Lindhauer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getEventName()
The event name, which caused the listener to be notified.DelegateCaseExecution
getSourceExecution()
The case execution in which context the variable was created/updated/deleted.-
Methods inherited from interface org.camunda.bpm.engine.delegate.ProcessEngineServicesAware
getProcessEngine, getProcessEngineServices
-
Methods inherited from interface org.camunda.bpm.engine.runtime.VariableInstance
getActivityInstanceId, getBatchId, getCaseExecutionId, getCaseInstanceId, getErrorMessage, getExecutionId, getId, getName, getProcessDefinitionId, getProcessInstanceId, getTaskId, getTenantId, getTypedValue, getTypeName, getValue
-
-
-
-
Method Detail
-
getEventName
String getEventName()
The event name, which caused the listener to be notified. Valid values are the constants defined inCaseVariableListener
.- Specified by:
getEventName
in interfaceDelegateVariableInstance<DelegateCaseExecution>
-
getSourceExecution
DelegateCaseExecution getSourceExecution()
The case execution in which context the variable was created/updated/deleted.- Specified by:
getSourceExecution
in interfaceDelegateVariableInstance<DelegateCaseExecution>
-
-