Package | Description |
---|---|
org.activiti.engine.compatibility | |
org.activiti.engine.debug | |
org.activiti.engine.delegate |
Interfaces used to include Java code in a process as the behavior of an activity
or as a listener to process events with
JavaDelegate s. |
Modifier and Type | Method and Description |
---|---|
Object |
Activiti5CompatibilityHandler.getScriptingEngineValue(String payloadExpressionValue,
String languageValue,
DelegateExecution execution) |
void |
Activiti5CompatibilityHandler.leaveExecution(DelegateExecution execution) |
boolean |
Activiti5CompatibilityHandler.mapException(Exception camelException,
DelegateExecution execution,
List<org.activiti.bpmn.model.MapExceptionEntry> mapExceptions) |
void |
Activiti5CompatibilityHandler.propagateError(BpmnError bpmnError,
DelegateExecution execution) |
Modifier and Type | Method and Description |
---|---|
static ExecutionTree |
ExecutionTreeUtil.buildExecutionTree(DelegateExecution executionEntity) |
Modifier and Type | Method and Description |
---|---|
DelegateExecution |
DelegateTask.getExecution()
Returns the execution currently at the task.
|
DelegateExecution |
DelegateExecution.getParent()
returns the parent of this execution, or null if there no parent.
|
Modifier and Type | Method and Description |
---|---|
List<? extends DelegateExecution> |
DelegateExecution.getExecutions()
returns the list of execution of which this execution the parent of.
|
Modifier and Type | Method and Description |
---|---|
void |
JavaDelegate.execute(DelegateExecution execution) |
static org.activiti.bpmn.model.BpmnModel |
DelegateHelper.getBpmnModel(DelegateExecution execution)
Returns the
BpmnModel matching the process definition bpmn model
for the process definition of the passed DelegateExecution . |
Map<String,Object> |
CustomPropertiesResolver.getCustomPropertiesMap(DelegateExecution execution) |
static Map<String,List<org.activiti.bpmn.model.ExtensionElement>> |
DelegateHelper.getExtensionElements(DelegateExecution execution)
|
static org.activiti.bpmn.model.FieldExtension |
DelegateHelper.getField(DelegateExecution execution,
String fieldName)
Returns the
FieldExtension matching the provided 'fieldName' which
is defined for the current activity of the provided
DelegateExecution . |
static Expression |
DelegateHelper.getFieldExpression(DelegateExecution execution,
String fieldName)
Returns the
Expression for the field defined for the current
activity of the provided DelegateExecution . |
static List<org.activiti.bpmn.model.FieldExtension> |
DelegateHelper.getFields(DelegateExecution execution)
Returns the list of field extensions, represented as instances of
FieldExtension , for the current activity of the passed
DelegateExecution . |
static org.activiti.bpmn.model.FlowElement |
DelegateHelper.getFlowElement(DelegateExecution execution)
Returns the current
FlowElement where the DelegateExecution is currently at. |
static Map<String,List<org.activiti.bpmn.model.ExtensionElement>> |
DelegateHelper.getFlowElementExtensionElements(DelegateExecution execution) |
static org.activiti.bpmn.model.FieldExtension |
DelegateHelper.getFlowElementField(DelegateExecution execution,
String fieldName) |
static Expression |
DelegateHelper.getFlowElementFieldExpression(DelegateExecution execution,
String fieldName) |
static List<org.activiti.bpmn.model.FieldExtension> |
DelegateHelper.getFlowElementFields(DelegateExecution execution) |
static Map<String,List<org.activiti.bpmn.model.ExtensionElement>> |
DelegateHelper.getListenerExtensionElements(DelegateExecution execution) |
static org.activiti.bpmn.model.FieldExtension |
DelegateHelper.getListenerField(DelegateExecution execution,
String fieldName) |
static Expression |
DelegateHelper.getListenerFieldExpression(DelegateExecution execution,
String fieldName) |
static List<org.activiti.bpmn.model.FieldExtension> |
DelegateHelper.getListenerFields(DelegateExecution execution) |
static boolean |
DelegateHelper.isExecutingExecutionListener(DelegateExecution execution)
Returns whether or not the provided execution is being use for executing an
ExecutionListener . |
static void |
DelegateHelper.leaveDelegate(DelegateExecution delegateExecution)
To be used in an
ActivityBehavior or JavaDelegate : leaves
according to the default BPMN 2.0 rules: all sequenceflow with a condition
that evaluates to true are followed. |
static void |
DelegateHelper.leaveDelegate(DelegateExecution delegateExecution,
String sequenceFlowId)
To be used in an
ActivityBehavior or JavaDelegate : leaves
the current activity via one specific sequenceflow. |
void |
ExecutionListener.notify(DelegateExecution execution) |
Copyright © 2017 Alfresco. All rights reserved.