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

Examples of com.founder.fix.fixflow.core.scriptlanguage.BusinessRulesScript


          if (classObjInstance instanceof SelectRulesScript) {
            SelectRulesScript selectRulesScript = (SelectRulesScript) classObjInstance;
            returnObjList = (Object) selectRulesScript.execute(parameter, sqlCommand, processEngineConfiguration);
          }
          if (classObjInstance instanceof BusinessRulesScript) {
            BusinessRulesScript businessRulesScript = (BusinessRulesScript) classObjInstance;
            returnObjList = (Object) businessRulesScript.execute(parameter, sqlCommand, processEngineConfiguration);
          }
        } catch (Exception e) {
          e.printStackTrace();
          throw new FixFlowException("执行Rule异常: " + e.getMessage(), e);
        }
View Full Code Here

TOP

Related Classes of com.founder.fix.fixflow.core.scriptlanguage.BusinessRulesScript

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.