Package com.opengamma.engine.marketdata.snapshot

Examples of com.opengamma.engine.marketdata.snapshot.MarketDataSnapshotter


      s_logger.warn("No config masters found at {}", getRemoteComponentFactory().getBaseUri());
      return;
    }

    final RemoteViewProcessor viewProcessor = viewProcessors.get(0);
    final MarketDataSnapshotter marketDataSnapshotter = viewProcessor.getMarketDataSnapshotter();
   
    Set<ConfigDocument> viewDefinitions = Sets.newHashSet();
   
    for (final ConfigMaster configMaster : configMasters) {
      final ConfigSearchRequest<ViewDefinition> request = new ConfigSearchRequest<ViewDefinition>(ViewDefinition.class);
View Full Code Here


    return new DataNamedMarketDataSpecificationRepositoryResource(getViewProcessor().getNamedMarketDataSpecificationRepository());
  }

  @Path(PATH_SNAPSHOTTER)
  public DataMarketDataSnapshotterResource getMarketDataSnapshotterImpl() {
    final MarketDataSnapshotter snp = new MarketDataSnapshotterImpl(_targetResolver, _volatilityCubeDefinitionSource, _htsSource);
    return new DataMarketDataSnapshotterResource(getViewProcessor(), snp);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.engine.marketdata.snapshot.MarketDataSnapshotter

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.