Package com.starflow.wf.engine

Examples of com.starflow.wf.engine.Configuration


 
  public static RelaDataManager buildRelaDataManager() {
    if(relaDataManager == null) {
      synchronized (RelaDataManagerBuilder.class) {
        if(relaDataManager == null) {
          Configuration configuration = Configuration.getInstance();
          String type = configuration.getProperty(RELA_DATA_MANAGER_TYPE);
         
          if("datasource".equals(type))
            relaDataManager = new DataSourceRelaDataManager();
          else if("nosql".equals(type))
            relaDataManager = new NoSqlRelaDataManager();
View Full Code Here

TOP

Related Classes of com.starflow.wf.engine.Configuration

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.