Esempio n. 1
0
 /**
  * Follow a user.
  *
  * <p>This requires authentication
  *
  * @return The Users the user follows with the new user the user is following.
  */
 public Users followUser(long userId, @SessionToken String sessionToken) {
   checkId(userId);
   return mUserInterface.followUser(userId, sessionToken);
 }