Class BoundaryEventActivityBehavior
- java.lang.Object
-
- org.activiti.engine.impl.bpmn.behavior.FlowNodeActivityBehavior
-
- org.activiti.engine.impl.bpmn.behavior.BoundaryEventActivityBehavior
-
- All Implemented Interfaces:
java.io.Serializable,ActivityBehavior,TriggerableActivityBehavior
- Direct Known Subclasses:
BoundaryCancelEventActivityBehavior,BoundaryCompensateEventActivityBehavior,BoundaryMessageEventActivityBehavior,BoundarySignalEventActivityBehavior,BoundaryTimerEventActivityBehavior
public class BoundaryEventActivityBehavior extends FlowNodeActivityBehavior
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected booleaninterrupting-
Fields inherited from class org.activiti.engine.impl.bpmn.behavior.FlowNodeActivityBehavior
bpmnActivityBehavior
-
-
Constructor Summary
Constructors Constructor Description BoundaryEventActivityBehavior()BoundaryEventActivityBehavior(boolean interrupting)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voiddeleteChildExecutions(ExecutionEntity parentExecution, ExecutionEntity notToDeleteExecution, CommandContext commandContext)voidexecute(DelegateExecution execution)Default behaviour: just leave the activity with no extra functionality.protected voidexecuteInterruptingBehavior(ExecutionEntity executionEntity, CommandContext commandContext)protected voidexecuteNonInterruptingBehavior(ExecutionEntity executionEntity, CommandContext commandContext)booleanisInterrupting()voidsetInterrupting(boolean interrupting)voidtrigger(DelegateExecution execution, java.lang.String triggerName, java.lang.Object triggerData)-
Methods inherited from class org.activiti.engine.impl.bpmn.behavior.FlowNodeActivityBehavior
leave, leaveIgnoreConditions, parseActivityType
-
-
-
-
Method Detail
-
execute
public void execute(DelegateExecution execution)
Description copied from class:FlowNodeActivityBehaviorDefault behaviour: just leave the activity with no extra functionality.- Specified by:
executein interfaceActivityBehavior- Overrides:
executein classFlowNodeActivityBehavior
-
trigger
public void trigger(DelegateExecution execution, java.lang.String triggerName, java.lang.Object triggerData)
- Specified by:
triggerin interfaceTriggerableActivityBehavior- Overrides:
triggerin classFlowNodeActivityBehavior
-
executeInterruptingBehavior
protected void executeInterruptingBehavior(ExecutionEntity executionEntity, CommandContext commandContext)
-
executeNonInterruptingBehavior
protected void executeNonInterruptingBehavior(ExecutionEntity executionEntity, CommandContext commandContext)
-
deleteChildExecutions
protected void deleteChildExecutions(ExecutionEntity parentExecution, ExecutionEntity notToDeleteExecution, CommandContext commandContext)
-
isInterrupting
public boolean isInterrupting()
-
setInterrupting
public void setInterrupting(boolean interrupting)
-
-