Package org.activiti.bpmn.model

Examples of org.activiti.bpmn.model.Transaction


public class SubProcessParser implements BpmnXMLConstants {
 
  public void parse(XMLStreamReader xtr, List<SubProcess> activeSubProcessList, Process activeProcess) {
    SubProcess subProcess = null;
    if (ELEMENT_TRANSACTION.equalsIgnoreCase(xtr.getLocalName())) {
      subProcess = new Transaction();
    } else if (ATTRIBUTE_VALUE_TRUE.equalsIgnoreCase(xtr.getAttributeValue(null, ATTRIBUTE_TRIGGERED_BY))) {
      subProcess = new EventSubProcess();
    } else {
      subProcess = new SubProcess();
    }
View Full Code Here

TOP

Related Classes of org.activiti.bpmn.model.Transaction

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.