Examples of ReviewType


Examples of es.udc.tfg.journals.model.reviewtype.ReviewType

    try {
      reviewTypeDao.findByName(reviewTypeName);
      throw new DuplicateInstanceException(reviewTypeName,
          ReviewType.class.getName());
    } catch (InstanceNotFoundException e) {
      ReviewType reviewType = new ReviewType(reviewTypeName);
      reviewTypeDao.save(reviewType);
      return reviewType;
    }
  }
View Full Code Here

Examples of es.udc.tfg.journals.model.reviewtype.ReviewType

    review.setUser(userDao.find(userId));
    review.setJournal(journalDao.find(journalId));
    reviewDao.save(review);

    for (ReviewRatingDto reviewRatingDto : reviewRatingsDto) {
      ReviewType reviewType = reviewTypeDao.findByName(reviewRatingDto
          .getReviewTypeName());
      ReviewRating reviewRating = new ReviewRating(
          reviewRatingDto.getRating(), reviewType);

      review.addReviewRating(reviewRating);
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.