request.addParameter(BVConstants.URL_STATS, "Reviews,NativeReviews");
request.addParameter(BVConstants.URL_LIMIT, "99");
if (getLocale() != null) {
request.addParameter(BVConstants.URL_FILTER, String.format("%s:%s:%s", BVConstants.URL_LOCALE, BVConstants.URL_EQUALS, getLocale()));
}
request.addRequestProcessor(new BVReviewStatisticsJSONProcessor());
long startTime = Calendar.getInstance().getTimeInMillis();
BVResponse response = request.process();
this.setMostRecentAPIResponse(response);
this.setMostRecentAPICallProcessingTime(Calendar.getInstance().getTimeInMillis() - startTime);