Uses of Class
com.atlassian.user.EntityException

Packages that use EntityException
com.atlassian.user   
com.atlassian.user.configuration   
com.atlassian.user.impl   
com.atlassian.user.properties   
com.atlassian.user.search.page   
com.atlassian.user.search.query   
com.atlassian.user.security.authentication   
com.atlassian.user.util.migration   
 

Uses of EntityException in com.atlassian.user
 

Methods in com.atlassian.user that throw EntityException
 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.
 Group GroupManager.createGroup(java.lang.String groupName)
          Create a new group with the specified name.
 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.
 Pager<java.lang.String> GroupManager.getExternalMemberNames(Group group)
          Retrieves the names of those members of the specified group which are stored in another repository.
 Group GroupManager.getGroup(java.lang.String groupName)
          Retrieves the group with the given name.
 Pager<Group> GroupManager.getGroups()
          Retrieves all groups in this repository.
 Pager<Group> GroupManager.getGroups(User user)
          Retrieves the groups to which the given user belongs.
 Pager<java.lang.String> GroupManager.getLocalMemberNames(Group group)
          Retrieves the names of those members of the specified group which are also stored in this repository.
 Pager<java.lang.String> GroupManager.getMemberNames(Group group)
          Retrieves the names of all members of the specified group.
 RepositoryIdentifier EntityManager.getRepository(Entity entity)
           
 User UserManager.getUser(java.lang.String username)
           
 Pager<java.lang.String> UserManager.getUserNames()
           
 Pager<User> UserManager.getUsers()
           
 boolean GroupManager.hasMembership(Group group, User user)
          Returns true if the user is a member of the specified group.
 boolean GroupManager.isReadOnly(Group group)
          Returns true if the specified group and membership of the specified group cannot be modified in the repository.
 boolean UserManager.isReadOnly(User user)
           
 User UserManager.onExternalUserRename(java.lang.String oldName, java.lang.String newName)
          Notifies the manager of a user rename done externally
 void GroupManager.removeGroup(Group group)
          Remove the group specified, if it exists in this repository.
 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.
 boolean GroupManager.supportsExternalMembership()
          Returns true if the repository supports users in other repositories being members of groups in this repository.
 

Uses of EntityException in com.atlassian.user.configuration
 

Subclasses of EntityException in com.atlassian.user.configuration
 class ConfigurationException
           
 

Uses of EntityException in com.atlassian.user.impl
 

Subclasses of EntityException in com.atlassian.user.impl
 class DuplicateEntityException
           
 class EntityMissingException
           
 class EntityValidationException
           
 class RepositoryException
           
 

Uses of EntityException in com.atlassian.user.properties
 

Methods in com.atlassian.user.properties that throw EntityException
 com.opensymphony.module.propertyset.PropertySet PropertySetFactory.getPropertySet(Entity entity)
           
 

Uses of EntityException in com.atlassian.user.search.page
 

Subclasses of EntityException in com.atlassian.user.search.page
 class PagerException
           
 

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

Methods in com.atlassian.user.search.query that throw EntityException
 SearchResult<Group> EntityQueryParser.findGroups(Query<Group> query)
          Returns the groups matching the provided query.
 SearchResult<Group> EntityQueryParser.findGroups(Query<Group> query, QueryContext context)
          If the repository matches the query context, returns the groups matching the query, otherwise returns null.
 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.
 

Uses of EntityException in com.atlassian.user.security.authentication
 

Subclasses of EntityException in com.atlassian.user.security.authentication
 class EntityAuthenticationException
           
 class InvalidPasswordException
          UserManagers can throw this when altering a password fails due to an invalid value
 

Methods in com.atlassian.user.security.authentication that throw EntityException
 boolean Authenticator.authenticate(java.lang.String username, java.lang.String password)
           
 

Uses of EntityException in com.atlassian.user.util.migration
 

Methods in com.atlassian.user.util.migration that throw EntityException
 void EntityMigrator.migrate(MigratorConfiguration config, MigrationProgressListener progressListener)
          Migrates users from one repository to another.
 



Copyright © 2005-2015 Atlassian. All Rights Reserved.