@Produces({ MediaType.APPLICATION_JSON })
public String retreiveFund(@PathParam("fundId") final Long fundId, @Context final UriInfo uriInfo) {
this.context.authenticatedUser().validateHasReadPermission(this.resourceNameForPermissions);
final FundData fund = this.readPlatformService.retrieveFund(fundId);
final ApiRequestJsonSerializationSettings settings = this.apiRequestParameterHelper.process(uriInfo.getQueryParameters());
return this.toApiJsonSerializer.serialize(settings, fund, this.RESPONSE_DATA_PARAMETERS);
}