Package com.opengamma.util.rest

Examples of com.opengamma.util.rest.DataConfigurationResource


    map.put("historicalTimeSeriesSource", factory.getObjectCreating());
   
    Map<String, Object> outer = new LinkedHashMap<String, Object>();
    outer.put("0", map);
   
    DataConfigurationResource resource = new DataConfigurationResource(getFudgeContext(), outer);
    repo.getRestComponents().publishResource(resource);
  }
View Full Code Here


    afterPropertiesSet();
    final Map<String, Object> map = new LinkedHashMap<String, Object>();
    buildConfiguration(repo, configuration, map);
    final Map<String, Object> outer = new LinkedHashMap<String, Object>();
    outer.put(DEFAULT_CONFIGURATION_DOCUMENT_ID, map);
    final DataConfigurationResource resource = new DataConfigurationResource(getFudgeContext(), outer);
    repo.getRestComponents().publishResource(resource);
    // indicate that all component configuration was used
    configuration.clear();
  }
View Full Code Here

TOP

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

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.