Class CancelEndEventActivityBehavior
- java.lang.Object
-
- org.camunda.bpm.engine.impl.bpmn.behavior.FlowNodeActivityBehavior
-
- org.camunda.bpm.engine.impl.bpmn.behavior.AbstractBpmnActivityBehavior
-
- org.camunda.bpm.engine.impl.bpmn.behavior.CancelEndEventActivityBehavior
-
- All Implemented Interfaces:
CoreActivityBehavior<ActivityExecution>,ActivityBehavior,SignallableActivityBehavior
public class CancelEndEventActivityBehavior extends AbstractBpmnActivityBehavior
- Author:
- Daniel Meyer, Falko Menge
-
-
Field Summary
Fields Modifier and Type Field Description protected PvmActivitycancelBoundaryEvent-
Fields inherited from class org.camunda.bpm.engine.impl.bpmn.behavior.AbstractBpmnActivityBehavior
LOG
-
Fields inherited from class org.camunda.bpm.engine.impl.bpmn.behavior.FlowNodeActivityBehavior
bpmnActivityBehavior
-
-
Constructor Summary
Constructors Constructor Description CancelEndEventActivityBehavior()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddoLeave(ActivityExecution execution)Subclasses that call leave() will first pass through this method, before the regularFlowNodeActivityBehavior.leave(ActivityExecution)is called.voidexecute(ActivityExecution execution)Default behaviour: just leave the activity with no extra functionality.PvmActivitygetCancelBoundaryEvent()voidsetCancelBoundaryEvent(PvmActivity cancelBoundaryEvent)voidsignal(ActivityExecution execution, String signalName, Object signalData)-
Methods inherited from class org.camunda.bpm.engine.impl.bpmn.behavior.AbstractBpmnActivityBehavior
createCompensateEventSubscription, executeWithErrorPropagation, isCompensationEventSubprocess, signalCompensationDone
-
Methods inherited from class org.camunda.bpm.engine.impl.bpmn.behavior.FlowNodeActivityBehavior
leave, leaveIgnoreConditions
-
-
-
-
Field Detail
-
cancelBoundaryEvent
protected PvmActivity cancelBoundaryEvent
-
-
Method Detail
-
execute
public void execute(ActivityExecution execution) throws Exception
Description copied from class:FlowNodeActivityBehaviorDefault behaviour: just leave the activity with no extra functionality.- Specified by:
executein interfaceActivityBehavior- Specified by:
executein interfaceCoreActivityBehavior<ActivityExecution>- Overrides:
executein classFlowNodeActivityBehavior- Throws:
Exception
-
doLeave
public void doLeave(ActivityExecution execution)
Description copied from class:AbstractBpmnActivityBehaviorSubclasses that call leave() will first pass through this method, before the regularFlowNodeActivityBehavior.leave(ActivityExecution)is called.- Overrides:
doLeavein classAbstractBpmnActivityBehavior
-
signal
public void signal(ActivityExecution execution, String signalName, Object signalData) throws Exception
- Specified by:
signalin interfaceSignallableActivityBehavior- Overrides:
signalin classAbstractBpmnActivityBehavior- Throws:
Exception
-
setCancelBoundaryEvent
public void setCancelBoundaryEvent(PvmActivity cancelBoundaryEvent)
-
getCancelBoundaryEvent
public PvmActivity getCancelBoundaryEvent()
-
-