/**
  * Get a user by the ID
  *
  * @return The User
  */
 public Users getUser(long userId) {
   checkId(userId);
   return mUserInterface.getUser(userId);
 }