I am trying to add some logic on parseBoundaryEvent in my ParseListener. I have added some boundary events in my model but the function within the ParseListener is not getting triggered. Any help / pointer would be greatly appreciated.
public class ProgressModelParseListener extends AbstractBpmnParseListener { private static final Logger LOGGER = LoggerFactory.getLogger(ProgressModelParseListener.class); @Override public void parseBoundaryEvent(Element boundaryEventElement, ScopeImpl scope, ActivityImpl activity) { String eventId = boundaryEventElement.attribute("id"); LOGGER.debug("Parsing parseBoundaryEvent ", eventId); } }
I can see that other functions like parseStartEvent and parseServiceTask are working fine.