Skip to content

Commit

Permalink
fix(engine): add missing parse listener method
Browse files Browse the repository at this point in the history
related to CAM-395, CAM-394
  • Loading branch information
saig0 committed Aug 13, 2015
1 parent 84cd05d commit 8e38610
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
*/
package org.camunda.bpm.engine.cdi.impl.event;

import java.util.List;

import org.camunda.bpm.engine.delegate.ExecutionListener;
import org.camunda.bpm.engine.delegate.TaskListener;
import org.camunda.bpm.engine.impl.bpmn.behavior.UserTaskActivityBehavior;
Expand All @@ -24,8 +26,6 @@
import org.camunda.bpm.engine.impl.util.xml.Element;
import org.camunda.bpm.engine.impl.variable.VariableDeclaration;

import java.util.List;

/**
* {@link BpmnParseListener} registering the {@link CdiEventListener} for
* distributing execution events using the cdi event infrastructure
Expand Down Expand Up @@ -246,4 +246,8 @@ public void parseIntermediateMessageCatchEventDefinition(Element messageEventDef
public void parseBoundaryMessageEventDefinition(Element element, boolean interrupting, ActivityImpl messageActivity) {
}

@Override
public void parseBoundaryEscalationEventDefinition(Element escalationEventDefinition, boolean interrupting, ActivityImpl boundaryEventActivity) {
}

}

0 comments on commit 8e38610

Please sign in to comment.