Package com.opengamma.util.rest

Examples of com.opengamma.util.rest.AbstractDataResource


   * This method wraps the managed components in an instance of {@link DataComponentServerResource}.
   *
   * @return the complete set of singletons, not null
   */
  public Set<Object> buildJaxRsSingletons() {
    AbstractDataResource dcr = new DataComponentServerResource(getLocalComponents(), getRemoteComponents());
    Set<Object> set = new LinkedHashSet<Object>();
    set.add(dcr);
    set.addAll(getHelpers());
    set.addAll(getRootResourceSingletons());
    set.addAll(getRootResourceFactories());
View Full Code Here

TOP

Related Classes of com.opengamma.util.rest.AbstractDataResource

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.