use of org.jbpm.bpmn2.core.CorrelationSubscription in project kogito-runtimes by kiegroup.
the class CorrelationSubscriptionHandler method end.
@Override
public Object end(String uri, String localName, ExtensibleXmlParser parser) throws SAXException {
Element element = parser.endElementBuilder();
CorrelationSubscription correlationSubscription = (CorrelationSubscription) parser.getCurrent();
correlationSubscription.getPropertyExpressions().putAll(buildPropertyProcessBindings(element.getChildNodes(), parser));
return null;
}
Aggregations