Examples of RemoteDbSecurityMaster


Examples of com.opengamma.masterdb.security.RemoteDbSecurityMaster

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

Examples of com.opengamma.masterdb.security.RemoteDbSecurityMaster

   * @param preferredClassifiers a list of names of classifiers in order of preference (most preferred first), or null
   * @return the best matching interface available
   */
  public SecurityMaster getSecurityMaster(final List<String> preferredClassifiers) {
    URI uri = getTopLevelComponent(preferredClassifiers, SecurityMaster.class).getUri();
    return new RemoteDbSecurityMaster(uri);
  }
View Full Code Here

Examples of com.opengamma.masterdb.security.RemoteDbSecurityMaster

   * @return a map of classifier names to requested interface type
   */
  public Map<String, SecurityMaster> getSecurityMasters() {
    Map<String, SecurityMaster> result = new LinkedHashMap<String, SecurityMaster>();
    for (ComponentInfo info : getComponentServer().getComponentInfos(SecurityMaster.class)) {
      result.put(info.getClassifier(), new RemoteDbSecurityMaster(info.getUri()));
    }
    return result;
  }
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.