retailerCustomerCommentViewBean.setDateCreate(dateFormat.format(retailerCustomerComment.getDateCreate()));
}
retailerCustomerCommentViewBean.setComment(retailerCustomerComment.getComment());
ReviewDataVocabularyPojo reviewDataVocabulary = new ReviewDataVocabularyPojo();
reviewDataVocabulary.setItemreviewed(retailer.getName());
reviewDataVocabulary.setReviewer(retailerCustomerComment.getCustomer().getScreenName());
DateFormat dateFormatDataVocabulary = requestUtil.getDataVocabularyFormatDate(requestData);
reviewDataVocabulary.setDtreviewed(dateFormat.format(retailerCustomerComment.getDateCreate()));
// reviewDataVocabulary.setSummary(summary);
reviewDataVocabulary.setDescription(retailerCustomerComment.getComment());
// reviewDataVocabulary.setRating(rating);
retailerCustomerCommentViewBean.setReviewDataVocabulary(reviewDataVocabulary);
retailerViewBean.getComments().add(retailerCustomerCommentViewBean);