Class DelegateExpressionExecutionListener
- java.lang.Object
-
- org.camunda.bpm.engine.impl.bpmn.listener.DelegateExpressionExecutionListener
-
- All Implemented Interfaces:
DelegateListener<DelegateExecution>
,ExecutionListener
public class DelegateExpressionExecutionListener extends java.lang.Object implements ExecutionListener
- Author:
- Joram Barrez
-
-
Field Summary
Fields Modifier and Type Field Description protected Expression
expression
protected static BpmnBehaviorLogger
LOG
-
Fields inherited from interface org.camunda.bpm.engine.delegate.ExecutionListener
EVENTNAME_END, EVENTNAME_START, EVENTNAME_TAKE
-
-
Constructor Summary
Constructors Constructor Description DelegateExpressionExecutionListener(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.void
notify(DelegateExecution execution)
-
-
-
Field Detail
-
LOG
protected static final BpmnBehaviorLogger LOG
-
expression
protected Expression expression
-
-
Constructor Detail
-
DelegateExpressionExecutionListener
public DelegateExpressionExecutionListener(Expression expression, java.util.List<FieldDeclaration> fieldDeclarations)
-
-
Method Detail
-
notify
public void notify(DelegateExecution execution) throws java.lang.Exception
- Specified by:
notify
in interfaceDelegateListener<DelegateExecution>
- Specified by:
notify
in interfaceExecutionListener
- 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.
-
-