Package com.opengamma.financial.security

Examples of com.opengamma.financial.security.RemoteFinancialSecuritySource


    return new RemotePositionMaster(uri);
  }

  public RemoteSecuritySource getSecuritySource(final String name) {
    final URI uri = _components.getComponentInfo(SecuritySource.class, name).getUri();
    return new RemoteFinancialSecuritySource(uri);
  }
View Full Code Here


   * @param name the classifier name of the object you want to retrieve
   * @return the interface requested, or null if not present
   */
  public SecuritySource getSecuritySource(final String name) {
    URI uri = getComponentServer().getComponentInfo(SecuritySource.class, name).getUri();
    return new RemoteFinancialSecuritySource(uri);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.financial.security.RemoteFinancialSecuritySource

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.