Examples of TokenPersistence


Examples of com.founder.fix.fixflow.core.impl.persistence.instance.TokenPersistence

    ExpandClassConfig expandClassConfig=processEngineConfiguration.getExpandClassConfig();
    List<ExpandClass>  expandClasses=expandClassConfig.getExpandClass();
    for (ExpandClass expandClass : expandClasses) {
      if(expandClass.getClassId().equals("TokenPersistence")){
        Object[] objTemp = new Object[] {connection}
        TokenPersistence tokenPersistence =(TokenPersistence) ReflectUtil.instantiate(expandClass.getClassImpl(),objTemp);
        return tokenPersistence;
      }
    }
    throw new FixFlowException("流程引擎扩展配置里的TokenPersistence实现类指定错误");
  }
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.