Examples of EHCachingMasterConfigSource


Examples of com.opengamma.master.config.impl.EHCachingMasterConfigSource

   * @return the config source, not null
   */
  protected ConfigSource createConfigSource(ComponentRepository repo) {
    ConfigSource source = new MasterConfigSource(getConfigMaster());
    if (getCacheManager() != null) {
      source = new EHCachingMasterConfigSource(getConfigMaster(), getCacheManager());
    }
    return source;
  }
View Full Code Here

Examples of com.opengamma.master.config.impl.EHCachingMasterConfigSource

  }

  protected ConfigSource initUnderlying(ComponentRepository repo, LinkedHashMap<String, String> configuration) {
    ConfigSource source = new MasterConfigSource(getUnderlyingConfigMaster());
    if (getCacheManager() != null) {
      source = new EHCachingMasterConfigSource(getUnderlyingConfigMaster(), getCacheManager());
    }
    if (getUnderlyingClassifier() != null) {
      ComponentInfo info = new ComponentInfo(ConfigSource.class, getUnderlyingClassifier());
      info.addAttribute(ComponentInfoAttributes.LEVEL, 1);
      info.addAttribute(ComponentInfoAttributes.REMOTE_CLIENT_JAVA, RemoteConfigSource.class);
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.