Package com.taobao.tddl.interact.rule.ruleimpl

Examples of com.taobao.tddl.interact.rule.ruleimpl.WrappedGroovyRule


      }
    }
   
    for (Object rule : rules) {
      if (keyPattern != null && keyPattern.length() != 0) {
        ruleList.add(new WrappedGroovyRule(String.valueOf(rule), keyPattern,extraPackagesStr));
      } else {
        if(tableSlotMap!=null&&dbTableMap!=null&&isTableRule){
          ruleList.add(new TableVirtualNodeRule(String.valueOf(rule), tableSlotMap,extraPackagesStr));
        }else{
            ruleList.add(new GroovyRule<String>(String.valueOf(rule),extraPackagesStr));
View Full Code Here

TOP

Related Classes of com.taobao.tddl.interact.rule.ruleimpl.WrappedGroovyRule

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.