Package com.opengamma.id

Examples of com.opengamma.id.UniqueIdSupplier


  /**
   * Creates an instance using the default scheme for each {@link UniqueId} created.
   */
  public MockHistoricalTimeSeriesSource() {
    _uniqueIdSupplier = new UniqueIdSupplier("MockHTS");
  }
View Full Code Here


   * Constructor taking the name of the scheme to use for the unique identifiers that this class generates.
   *
   * @param uniqueIdScheme  the scheme to use for the automatically allocated unique identifiers
   */
  ExternalIdBundleMapper(String uniqueIdScheme) {
    _idSupplier = new UniqueIdSupplier(uniqueIdScheme);
  }
View Full Code Here

   * Creates an instance.
   *
   * @param provider  the time-series provider, not null
   */
  public BloombergHistoricalTimeSeriesSource(HistoricalTimeSeriesProvider provider) {
    super("Bloomberg", new UniqueIdSupplier("BbgHTS"), provider);
  }
View Full Code Here

  /**
   * Creates the security master.
   */
  public MockFinancialSecuritySource() {
    _uidSupplier = new UniqueIdSupplier("Mock");
  }
View Full Code Here

  /**
   * Creates the security master.
   */
  public InMemorySecuritySource() {
    _uidSupplier = new UniqueIdSupplier("Mock");
  }
View Full Code Here

TOP

Related Classes of com.opengamma.id.UniqueIdSupplier

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.