Package org.broadleafcommerce.core.rating.domain

Examples of org.broadleafcommerce.core.rating.domain.ReviewDetailImpl


        ratingSummary.getRatings().add(ratingDetail);

        ReviewDetail reviewDetail = ratingSummaryDao.readReview(customer.getId(), ratingSummary.getId());

        if (reviewDetail == null) {
            reviewDetail = new ReviewDetailImpl(customer, SystemTime.asDate(), ratingDetail, reviewText, ratingSummary);
        } else {
            reviewDetail.setReviewText(reviewText);        
        }

        ratingSummary.getReviews().add(reviewDetail);
View Full Code Here

TOP

Related Classes of org.broadleafcommerce.core.rating.domain.ReviewDetailImpl

Copyright © 2018 www.massapicom. 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.