Ejemplo n.º 1
0
 public Page<Mood> findFriendMoods(Account owner, Pageable pageRequest) {
   Page<Mood> moods = moodDao.findFriendMoods(owner, pageRequest);
   for (Mood mood : moods.getContent()) {
     List<Comment> comments =
         commentDao.findByParentMoodAndParentType(mood, Comment.PARENT_TYPE_MOOD);
     mood.setChildren(comments);
   }
   return moods;
 }