Examples of JournalRatingDto


Examples of es.udc.tfg.journals.model.journalservice.JournalRatingDto

  public List<JournalRatingDto> findJournalsByKeywords(String keywords,
      String column, String order, int startIndex, int count) {
    List<JournalRatingDto> result = new ArrayList<JournalRatingDto>();
    for (Journal journal : keywordWeightJournalDao.findJournalsByKeywords(
        keywords, column, order, startIndex, count)) {
      result.add(new JournalRatingDto(journal, reviewService
          .calculateAverageRating(journal.getJournalId(), "global")));
    }
    return result;
  }
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.