/**
  * Get users notifications
  *
  * @param userId The user's ID to be used for fetching the notification details
  * @return The list of notifications
  */
 public Notifications getNotifications(long userId) {
   checkId(userId);
   return mUserInterface.getNotifications(userId);
 }