Uses of Class
org.starhope.appius.user.User

Packages that use User
com.tootsville   
com.tootsville.npc   
org.starhope.appius.game   
org.starhope.appius.mb   
org.starhope.appius.messaging   
org.starhope.appius.pay   
org.starhope.appius.server   
org.starhope.appius.user   
 

Uses of User in com.tootsville
 

Methods in com.tootsville that return User
static User WebUtil.createUserLogin(String userName, String password)
           
static User WebUtil.verifyUserLogin(String userID, String password)
          WRITEME: document this method (theys, Aug 12, 2009)
 

Uses of User in com.tootsville.npc
 

Fields in com.tootsville.npc declared as User
private  User God.user
           
 

Uses of User in org.starhope.appius.game
 

Methods in org.starhope.appius.game that return User
 User InventoryItem.getOwner()
           
 

Methods in org.starhope.appius.game with parameters of type User
 void InventoryItem.setOwner(User user)
           
 

Uses of User in org.starhope.appius.mb
 

Methods in org.starhope.appius.mb that return User
 User UserEnrolment.getUser()
           
 

Methods in org.starhope.appius.mb with parameters of type User
 void UserEnrolment.setUser(User newUser)
           
 

Uses of User in org.starhope.appius.messaging
 

Methods in org.starhope.appius.messaging with parameters of type User
static void Mail.sendPasswordRecoveryMail(User user, String template, String password)
           
static void Mail.sendSignupMail(User user, String parentMail)
          Update the email address for the user and then send an enrollment email to the address.
static void Mail.sendTemplateMail(User user, boolean mailParent, String templateName, String subject, String passwordOrNull, String callback)
           
 

Uses of User in org.starhope.appius.pay
 

Methods in org.starhope.appius.pay with parameters of type User
 void PayPalGateway.setUser(User userPurchasing)
           
 void AuthorizeNetGateway.setUser(User p)
           
 

Uses of User in org.starhope.appius.server
 

Methods in org.starhope.appius.server with parameters of type User
 void OsirisSFSExtension.biff(User u, User user, Integer room)
           Async mail notification: { from: "postman", status: true, newMail: NNN }
private  void OsirisSFSExtension.sendUserLists(User u, User user)
           
private  void OsirisSFSExtension.sendWardrobe(User user, User u, int room)
          Send a "from:wardrobe" message to the user
 

Uses of User in org.starhope.appius.user
 

Methods in org.starhope.appius.user that return User
static User User.get(org.json.JSONObject object)
           
 User User.getByApprovalCookie(String cookie)
           
static User User.getByID(int id)
          Instantiate a user object from an existing user account ID
static User User.getByLogin(String login)
           
static User[] User.getByMail(String mail)
          Returns an array of all users associated with a given eMail address.
static User User.getByPeer(User u)
          Get a Braque User object for the respective Smart Fox Server user object
static User User.getByRequestedName(String userNameRequested)
          Get the user who has requested a certain name, if any.
 User[] Parent.getChildren()
           
static User User.getSystemUser()
          Get the System user object (the user which represents the system program itself).
static User[] User.getUsersAwaitingNameApproval()
          Get up to 20 users who are awaiting approval of their names.
 

Methods in org.starhope.appius.user with parameters of type User
 void User.addBuddy(User newBuddy)
          Adds a user to this user's buddy list.
 void User.approveName(User nameApprovedBy)
          Approve the user's requested name, and make it active
 void User.attend(User otherGuy)
          WRITEME: document this method (brpocock, Aug 31, 2009)
 void User.ban(User bannedBy, String bannedReason)
          Ban a user, preventing any future access to the server.
 void User.ignore(User otherUser)
          Calling this method indicates that this user wants to ignore the other specified user.
 void User.kick(User kickedBy, String kickedReason, long kickedMinutes)
          Kick a user offline for a number of minutes.
 void User.kick(User kickedBy, String kickedReason, Timestamp allowBack)
          Kick the user offline, until a certain date & time.
 void User.removeBuddy(User otherGuy)
          Don't want for him to be my buddy any more
 void User.reportedToModeratorBy(User u)
          WRITEME: document this method (brpocock, Aug 31, 2009)
 void Parent.requestApproval(User user)
          WRITEME: document this method (brpocock, Jul 8, 2009)
private  boolean User.sendMail(User to, String subject, String body)