Package com.founder.fix.bpmn2extensions.sqlmappingconfig

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


      }

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

        Delete deleteObj = SqlmappingconfigFactory.eINSTANCE.createDelete();
        deleteObj.setId(element.attributeValue("id"));
        deleteObj.setParameterType(element.attributeValue("parameterType"));
        deleteObj.setRemark(element.attributeValue("remark"));
        deleteObj.setSqlValue(element.getText());
       
        String classPathString=element.attributeValue("classPath");

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

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

      }

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

TOP

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

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.