Class DelegateExpressionCaseVariableListener
- java.lang.Object
-
- org.camunda.bpm.engine.impl.variable.listener.DelegateExpressionCaseVariableListener
-
- All Implemented Interfaces:
CaseVariableListener
,VariableListener<DelegateCaseVariableInstance>
public class DelegateExpressionCaseVariableListener extends java.lang.Object implements CaseVariableListener
- Author:
- Thorben Lindhauer
-
-
Field Summary
Fields Modifier and Type Field Description protected Expression
expression
-
Fields inherited from interface org.camunda.bpm.engine.delegate.CaseVariableListener
CREATE, DELETE, UPDATE
-
-
Constructor Summary
Constructors Constructor Description DelegateExpressionCaseVariableListener(Expression expression, java.util.List<FieldDeclaration> fieldDeclarations)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getExpressionText()
returns the expression text for this execution listener.java.util.List<FieldDeclaration>
getFieldDeclarations()
void
notify(DelegateCaseVariableInstance variableInstance)
-
-
-
Field Detail
-
expression
protected Expression expression
-
-
Constructor Detail
-
DelegateExpressionCaseVariableListener
public DelegateExpressionCaseVariableListener(Expression expression, java.util.List<FieldDeclaration> fieldDeclarations)
-
-
Method Detail
-
notify
public void notify(DelegateCaseVariableInstance variableInstance) throws java.lang.Exception
- Specified by:
notify
in interfaceCaseVariableListener
- Specified by:
notify
in interfaceVariableListener<DelegateCaseVariableInstance>
- Throws:
java.lang.Exception
-
getExpressionText
public java.lang.String getExpressionText()
returns the expression text for this execution listener. Comes in handy if you want to check which listeners you already have.
-
getFieldDeclarations
public java.util.List<FieldDeclaration> getFieldDeclarations()
-
-