Examples of MarketDataSnapshotter


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

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

    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
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.