Examples of LiveDataMetaDataProviderResult


Examples of com.opengamma.provider.livedata.LiveDataMetaDataProviderResult

  }

  @Override
  public LiveDataMetaDataProviderResult metaData(LiveDataMetaDataProviderRequest request) {
    ArgumentChecker.notNull(request, "request");
    return new LiveDataMetaDataProviderResult(_metaData);
  }
View Full Code Here

Examples of com.opengamma.provider.livedata.LiveDataMetaDataProviderResult

  @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
Copyright © 2018 www.massapi.com. 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.