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