Package com.founder.fix.bpmn2extensions.sqlmappingconfig

Examples of com.founder.fix.bpmn2extensions.sqlmappingconfig.Insert


      }

      for (Object ele : document.getRootElement().elements("insert")) {
        Element element = (Element) ele;

        Insert insertObj = SqlmappingconfigFactory.eINSTANCE.createInsert();
        insertObj.setId(element.attributeValue("id"));
        insertObj.setParameterType(element.attributeValue("parameterType"));
        insertObj.setRemark(element.attributeValue("remark"));
        insertObj.setSqlValue(element.getText());
       
        String classPathString=element.attributeValue("classPath");

        if(StringUtil.isNotEmpty(classPathString)){
          Class<?> classObj=ReflectUtil.loadClass(classPathString);
          if(classObj!=null){
            insertObj.setClassPath(classPathString);
            ruleClassMap.put(element.attributeValue("id"), classObj);
          }
        }

     
        ruleMap.put(insertObj.getId(), insertObj);

      }

      for (Object ele : document.getRootElement().elements("delete")) {
        Element element = (Element) ele;
View Full Code Here

TOP

Related Classes of com.founder.fix.bpmn2extensions.sqlmappingconfig.Insert

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.