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 java.lang.StringgetEventName()The event name, which caused the listener to be notified.DelegateCaseExecutiongetSourceExecution()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
java.lang.String getEventName()
The event name, which caused the listener to be notified. Valid values are the constants defined inCaseVariableListener.- Specified by:
getEventNamein interfaceDelegateVariableInstance<DelegateCaseExecution>
-
getSourceExecution
DelegateCaseExecution getSourceExecution()
The case execution in which context the variable was created/updated/deleted.- Specified by:
getSourceExecutionin interfaceDelegateVariableInstance<DelegateCaseExecution>
-
-