/** * Return the last visits * * @return */ public List<VisitActivity> listLastVisits() { return historyService.listLastVisitsByUser(currentUser); }
/** * Return the last searches * * @return */ public List<SearchActivity> listLastDistinctSearches() { return historyService.listLastDistinctSearchesByUser(currentUser); }
/** * Return the last tags * * @return */ public List<AddTagActivity> listLastTags() { return historyService.listLastTagsByUser(currentUser); }
/** * Return the last comments * * @return */ public List<CommentActivity> listLastComments() { return historyService.listLastCommentsByUser(currentUser); }