private List<FlowElement> triggerElements = new ArrayList<FlowElement>();
public BPMN2PathFinderImpl(String bpmn2xml) {
this.manager = new PathContextManager();
try {
InputStream is = new ByteArrayInputStream(bpmn2xml.getBytes("UTF-8"));
this.definitions = BPMN2Utils.getDefinitions(is);
} catch (UnsupportedEncodingException e) {