cancel
Showing results for 
Search instead for 
Did you mean: 

Extend Boundary Event

brunofigueiredo
Champ in-the-making
Champ in-the-making
Hello everybody, i wonder if it is possible to extend a boundary event, if so, how to make extension. I read the user guide i couldn't find ways to make this type of extension.
1 REPLY 1

martin_grofcik
Confirmed Champ
Confirmed Champ
Hi Bruno,

Your question affects:
-> Model - use BPMN extension elements to add information to the model. Similar to e.g.

<process id="testEventListeners">
  <extensionElements>
    <activiti:eventListener class="org.activiti.engine.test.MyEventListener" />
    <activiti:eventListener delegateExpression="${testEventListener}" events="JOB_EXECUTION_SUCCESS,JOB_EXECUTION_FAILURE" />
  </extensionElements>
-> Runtime - change boundary event parse handler to replace org.activiti.engine.impl.bpmn.behavior.BoundaryEventActivityBehavior.

Regards
Martin