Package com.opengamma.engine.marketdata

Examples of com.opengamma.engine.marketdata.NamedMarketDataSpecificationRepository


public class RemoteNamedMarketDataSpecificationRepositoryComponentFactory extends AbstractRemoteComponentServerComponentFactory {

  @Override
  protected void initComponent(ComponentRepository repo, ComponentInfo info) {
    if (NamedMarketDataSpecificationRepository.class.isAssignableFrom(info.getType())) {
      NamedMarketDataSpecificationRepository repository = new RemoteNamedMarketDataSpecificationRepository(info.getUri());
      repo.registerComponent(info, repository);
      if (isPublishRest()) {
        repo.getRestComponents().republish(info);
      }
    }  
View Full Code Here

TOP

Related Classes of com.opengamma.engine.marketdata.NamedMarketDataSpecificationRepository

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.