コード例 #1
0
 /**
  * Get Posts a particular user has created
  *
  * @param userId The user's ID
  * @return Posts the user has created
  */
 public Posts getUsersPosts(long userId) {
   checkId(userId);
   return mUserInterface.getUsersPosts(userId);
 }