Examples of LiveDataMetaDataProviderRequest


Examples of com.opengamma.provider.livedata.LiveDataMetaDataProviderRequest

  }

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

Examples of com.opengamma.provider.livedata.LiveDataMetaDataProviderRequest

  }

  @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.