Package com.opengamma.provider.livedata

Examples of com.opengamma.provider.livedata.LiveDataMetaDataProviderRequest


  }

  //-------------------------------------------------------------------------
  @Override
  public LiveDataMetaData metaData() {
    return metaData(new LiveDataMetaDataProviderRequest()).getMetaData();
  }
View Full Code Here


  }

  @GET
  @Path("metaData")
  public Response getMetaData(@Context UriInfo uriInfo) {
    LiveDataMetaDataProviderRequest request = RestUtils.decodeQueryParams(uriInfo, LiveDataMetaDataProviderRequest.class);
    LiveDataMetaDataProviderResult result = getLiveDataProvider().metaData(request);
    return responseOkFudge(result);
  }
View Full Code Here

TOP

Related Classes of com.opengamma.provider.livedata.LiveDataMetaDataProviderRequest

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.