Uses of Interface
com.atlassian.user.User

Packages that use User
com.atlassian.user   
com.atlassian.user.search.query   
 

Uses of User in com.atlassian.user
 

Methods in com.atlassian.user that return User
 User UserManager.createUser(java.lang.String username)
          Deprecated. since 3.0 use UserManager.createUser(User, Credential) because this is an inconvenient way to create users now that the setFullName() and setEmail() methods are no longer on the User interface
 User UserManager.createUser(User userTemplate, Credential credential)
          Creates a new user with the provided user details and encrypted password.
 User UserManager.getUser(java.lang.String username)
           
 User UserManager.onExternalUserRename(java.lang.String oldName, java.lang.String newName)
          Notifies the manager of a user rename done externally
 User UserManager.renameUser(User user, java.lang.String userName)
          Renames the user to the new name.
 User UserManager.saveUser(User user)
          Persists any changes made to the user to the storage system used by this user manager.
 

Methods in com.atlassian.user that return types with arguments of type User
 Pager<User> UserManager.getUsers()
           
 

Methods in com.atlassian.user with parameters of type User
 void GroupManager.addMembership(Group group, User user)
          Adds the user to the specified group.
 void UserManager.alterPassword(User user, java.lang.String plainTextPass)
          Encrypts the plain password, sets it on the user, and saves the user.
 User UserManager.createUser(User userTemplate, Credential credential)
          Creates a new user with the provided user details and encrypted password.
 Pager<Group> GroupManager.getGroups(User user)
          Retrieves the groups to which the given user belongs.
 boolean GroupManager.hasMembership(Group group, User user)
          Returns true if the user is a member of the specified group.
 boolean UserManager.isReadOnly(User user)
           
 void GroupManager.removeMembership(Group group, User user)
          Removes the user from the specified group.
 void UserManager.removeUser(User user)
          Removes the specified user from the repository.
 User UserManager.renameUser(User user, java.lang.String userName)
          Renames the user to the new name.
 User UserManager.saveUser(User user)
          Persists any changes made to the user to the storage system used by this user manager.
 

Uses of User in com.atlassian.user.search.query
 

Methods in com.atlassian.user.search.query that return types with arguments of type User
 SearchResult<User> EntityQueryParser.findUsers(Query<User> query)
          Returns the users matching the provided query.
 SearchResult<User> EntityQueryParser.findUsers(Query<User> query, QueryContext context)
          If the repository matches the query context, returns the users matching the query, otherwise returns null.
 

Method parameters in com.atlassian.user.search.query with type arguments of type User
 SearchResult<User> EntityQueryParser.findUsers(Query<User> query)
          Returns the users matching the provided query.
 SearchResult<User> EntityQueryParser.findUsers(Query<User> query, QueryContext context)
          If the repository matches the query context, returns the users matching the query, otherwise returns null.
 



Copyright © 2005-2015 Atlassian. All Rights Reserved.