Package com.opengamma.financial.function.rest

Examples of com.opengamma.financial.function.rest.RemoteFunctionConfigurationSource


    return new RemoteCurrencyMatrixSource(uri);
  }

  public RemoteFunctionConfigurationSource getRepositoryConfigurationSource(final String name) {
    final URI uri = _components.getComponentInfo(FunctionConfigurationSource.class, name).getUri();
    return new RemoteFunctionConfigurationSource(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 FunctionConfigurationSource getFunctionConfigurationSource(final String name) {
    URI uri = getComponentServer().getComponentInfo(FunctionConfigurationSource.class, name).getUri();
    return new RemoteFunctionConfigurationSource(uri);
  }
View Full Code Here

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

   * @return a map of classifier names to requested interface type
   */
  public Map<String, FunctionConfigurationSource> getFunctionConfigurationSources() {
    Map<String, FunctionConfigurationSource> result = new LinkedHashMap<String, FunctionConfigurationSource>();
    for (ComponentInfo info : getComponentServer().getComponentInfos(FunctionConfigurationSource.class)) {
      result.put(info.getClassifier(), new RemoteFunctionConfigurationSource(info.getUri()));
    }
    return result;   
  }
View Full Code Here

TOP

Related Classes of com.opengamma.financial.function.rest.RemoteFunctionConfigurationSource

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.