Package com.founder.fix.fixflow.core.scriptlanguage

Examples of com.founder.fix.fixflow.core.scriptlanguage.DeleteRulesScript.execute()


      Class<?> classObj = processEngineConfiguration.getRuleClass(rule.getId());
      if (classObj != null) {
        try {

          DeleteRulesScript deleteRulesScript = (DeleteRulesScript) classObj.newInstance();
          deleteRulesScript.execute(parameter, sqlCommand, processEngineConfiguration);

        } catch (Exception e) {

          LOG.error("规则: " + statement + " 执行出错,规则执行类为: " + classPath + ",错误信息: " + e.getMessage(), e);
View Full Code Here


    if (StringUtil.isNotEmpty(classPath)) {
      Class<?> classObj = processEngineConfiguration.getRuleClass(rule.getId());
      if (classObj != null) {
        try {
          DeleteRulesScript deleteRulesScript = (DeleteRulesScript) classObj.newInstance();
          deleteRulesScript.execute(persistentObject, sqlCommand, processEngineConfiguration);
        } catch (Exception e) {
          LOG.error("规则: " + statement + " 执行出错,规则执行类为: " + classPath + ",错误信息: " + e.getMessage(), e);

          throw new FixFlowException(ExceptionCode.RULEEXCEPTION_CLASSEXEC, e, statement, classPath, e.getMessage());
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.