Uses of Interface
com.atlassian.crowd.embedded.api.User

Packages that use User
com.atlassian.crowd.embedded.api   
com.atlassian.crowd.embedded.impl   
com.atlassian.crowd.exception   
 

Uses of User in com.atlassian.crowd.embedded.api
 

Subinterfaces of User in com.atlassian.crowd.embedded.api
 interface UserWithAttributes
          Combination of a User and the user's Attributes.
 

Fields in com.atlassian.crowd.embedded.api with type parameters of type User
static java.util.Comparator<User> UserComparator.USER_COMPARATOR
          Singleton instance of Comparator
 

Methods in com.atlassian.crowd.embedded.api that return User
 User CrowdService.addUser(User user, java.lang.String credential)
          Adds a user to the directory store.
 User CrowdService.authenticate(java.lang.String name, java.lang.String credential)
          Authenticates a user with the given credential
 User CrowdService.getUser(java.lang.String name)
          Returns the user that matches the supplied name.
 User CrowdService.updateUser(User user)
          Updates the User.
 

Methods in com.atlassian.crowd.embedded.api that return types with arguments of type User
 java.lang.Iterable<User> CrowdService.searchUsersAllowingDuplicateNames(Query<User> query)
          Searches for User entities that match the supplied search query.
 

Methods in com.atlassian.crowd.embedded.api with parameters of type User
 User CrowdService.addUser(User user, java.lang.String credential)
          Adds a user to the directory store.
 void CrowdService.addUserToGroup(User user, Group group)
          Adds a user as a member of a group.
 int UserComparator.compare(User user1, User user2)
           
 int User.compareTo(User user)
          CompareTo must be compatible with the equals() and hashCode() methods
static int UserComparator.compareTo(User user1, User user2)
           
static boolean UserComparator.equal(User user1, User user2)
          Checks whether the two User objects are equal according to the contract of the User interface.
static boolean UserComparator.equalsObject(User user, java.lang.Object o)
           
static int UserComparator.hashCode(User user)
           
 boolean CrowdService.isUserDirectGroupMember(User user, Group group)
          Determines if a user is a direct member of a group.
 boolean CrowdService.isUserMemberOfGroup(User user, Group group)
          Returns true if the user is a direct or indirect (nested) member of the group.
 void CrowdService.removeAllUserAttributes(User user)
          Remove all attributes for a user.
 boolean CrowdService.removeUser(User user)
          Removes the user that matches the supplied name.
 void CrowdService.removeUserAttribute(User user, java.lang.String attributeName)
          Removes all the values for a single attribute key for a user.
 boolean CrowdService.removeUserFromGroup(User user, Group group)
          Removes a user as a member of a group.
 void CrowdService.setUserAttribute(User user, java.lang.String attributeName, java.util.Set<java.lang.String> attributeValues)
          Adds or updates a user's attribute with the new attribute values.
 void CrowdService.setUserAttribute(User user, java.lang.String attributeName, java.lang.String attributeValue)
          Adds or updates a user's attribute with the new attribute value.
 User CrowdService.updateUser(User user)
          Updates the User.
 void CrowdService.updateUserCredential(User user, java.lang.String credential)
          Updates the password for a user.
 

Method parameters in com.atlassian.crowd.embedded.api with type arguments of type User
 java.lang.Iterable<User> CrowdService.searchUsersAllowingDuplicateNames(Query<User> query)
          Searches for User entities that match the supplied search query.
 

Uses of User in com.atlassian.crowd.embedded.impl
 

Classes in com.atlassian.crowd.embedded.impl that implement User
 class DelegatingUserWithAttributes
          Implementation of UserWithAttributes that simply delegates to an underlying User and Attributes object.
 

Methods in com.atlassian.crowd.embedded.impl with parameters of type User
 int DelegatingUserWithAttributes.compareTo(User user)
           
 

Constructors in com.atlassian.crowd.embedded.impl with parameters of type User
DelegatingUserWithAttributes(User user, Attributes attributes)
           
 

Uses of User in com.atlassian.crowd.exception
 

Methods in com.atlassian.crowd.exception that return User
 User InvalidUserException.getUser()
           
 

Methods in com.atlassian.crowd.exception with parameters of type User
 void InvalidUserException.setUser(User user)
           
 

Constructors in com.atlassian.crowd.exception with parameters of type User
InvalidUserException(User user, java.lang.String message)
           
InvalidUserException(User user, java.lang.String message, java.lang.Throwable cause)
           
InvalidUserException(User user, java.lang.Throwable cause)
           
 



Copyright © 2010 Atlassian. All Rights Reserved.