Package com.opengamma.transport.jaxrs

Examples of com.opengamma.transport.jaxrs.UriEndPointDescriptionProviderFactoryBean


  }

  private void initConfiguration(ComponentRepository repo) {
    Map<String, Object> map = new LinkedHashMap<String, Object>();
   
    UriEndPointDescriptionProviderFactoryBean factory = new UriEndPointDescriptionProviderFactoryBean();
    factory.setLocal("/jax/htsSource/");
    factory.setPort(getJettyPort());
    map.put("historicalTimeSeriesSource", factory.getObjectCreating());
   
    Map<String, Object> outer = new LinkedHashMap<String, Object>();
    outer.put("0", map);
   
    DataConfigurationResource resource = new DataConfigurationResource(getFudgeContext(), outer);
View Full Code Here

TOP

Related Classes of com.opengamma.transport.jaxrs.UriEndPointDescriptionProviderFactoryBean

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.