Uses of Class
common.User

Packages that use User
common   
group   
messaging   
 

Uses of User in common
 

Fields in common declared as User
 User Group.owner
          The groups owner.
 User Group.pendingOwner
          A user that will become the group's owner after an ownership transfer.
 

Fields in common with type parameters of type User
 List<User> Group.users
          The group's users.
 

Uses of User in group
 

Methods in group with parameters of type User
abstract  void GroupService.changeOwner(Group group, User newOwner)
          GroupService starts performing the necessary steps for ownership transfer.
abstract  void GroupService.inviteUser(Group group, User user)
          GroupService starts performing the necessary steps for inviting an user into the given group.
abstract  void GroupService.removeUser(Group group, User user)
          GroupService starts performing the necessary steps for removing an user from the given group.
 

Uses of User in messaging
 

Fields in messaging declared as User
private  User MessageQueryCriteria.destination
           
 User Message.destination
          The user that receives the message in its mailbox
 User Message.source
          The user that sends the message
 

Methods in messaging that return User
 User MessageQueryCriteria.getDestination()
           
 

Methods in messaging with parameters of type User
abstract  Message MessageFactory.createMessage(MessageType type, User destination, String content)
           
 void MessageQueryCriteria.setDestination(User destination)