Uses of Class
com.atlassian.crowd.exception.runtime.OperationFailedException

Packages that use OperationFailedException
com.atlassian.crowd.embedded.api   
com.atlassian.crowd.embedded.core   
com.atlassian.crowd.exception.runtime   
 

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

Methods in com.atlassian.crowd.embedded.api that throw OperationFailedException
 Directory CrowdDirectoryService.addDirectory(Directory directory)
          Will add a new Directory into the local database.
 Group CrowdService.addGroup(Group group)
          Adds a group to the directory store.
 void CrowdService.addGroupToGroup(Group childGroup, Group parentGroup)
          Adds a group as a member of a parent group.
 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.
 User CrowdService.authenticate(java.lang.String name, java.lang.String credential)
          Authenticates a user with the given credential.
 DirectorySynchronisationInformation CrowdDirectoryService.getDirectorySynchronisationInformation(long directoryId)
          Returns the synchronisation information for the directory.
 boolean CrowdDirectoryService.isDirectorySynchronisable(long directoryId)
          Returns true if the underlying directory implementation supports manual synchronisation of the directory's local cache.
 boolean CrowdDirectoryService.isDirectorySynchronising(long directoryId)
          Returns true if the given Directory is currently synchronising.
 boolean CrowdService.isGroupDirectGroupMember(Group childGroup, Group parentGroup)
          Determines if a group is a direct member of another group.
 boolean CrowdService.isUserDirectGroupMember(User user, Group group)
          Determines if a user is a direct member of a group.
 void CrowdService.removeAllGroupAttributes(Group group)
          Removes all group attributes.
 void CrowdService.removeAllUserAttributes(User user)
          Remove all attributes for a user.
 boolean CrowdDirectoryService.removeDirectory(long directoryId)
          Will remove a directory from the Application, this will also remove all associated entities (users/groups/memberships).
 boolean CrowdService.removeGroup(Group group)
          Removes the group that matches the supplied name.
 void CrowdService.removeGroupAttribute(Group group, java.lang.String attributeName)
          Removes all the values for a single attribute key for a group.
 boolean CrowdService.removeGroupFromGroup(Group childGroup, Group parentGroup)
          Removes a group as a member of a parent group.
 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 CrowdDirectoryService.setDirectoryPosition(long directoryId, int position)
          Will place the directory with the given directoryId and the passed in position in the current list of directories configured for an application.
 void CrowdService.setGroupAttribute(Group group, java.lang.String attributeName, java.util.Set<java.lang.String> attributeValues)
          Adds or updates a group's attributes with the new attributes.
 void CrowdService.setGroupAttribute(Group group, java.lang.String attributeName, java.lang.String attributeValue)
          Adds or updates a group's attributes with the new attributes.
 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.
 boolean CrowdDirectoryService.supportsNestedGroups(long directoryId)
          Returns true if the underlying directory implementation supports nested groups.
 void CrowdDirectoryService.synchroniseDirectory(long directoryId)
          Requests that this directory should update its cache by synchronising with the remote server.
 void CrowdDirectoryService.synchroniseDirectory(long directoryId, boolean runInBackground)
          Requests that this directory should update its cache by synchronising with the remote server.
 void CrowdDirectoryService.testConnection(Directory directory)
          Test if a connection to the directory server can be established.
 Directory CrowdDirectoryService.updateDirectory(Directory directory)
          Will update the Directory.
 Group CrowdService.updateGroup(Group group)
          Updates the group.
 User CrowdService.updateUser(User user)
          Updates the User.
 void CrowdService.updateUserCredential(User user, java.lang.String credential)
          Updates the password for a user.
 

Uses of OperationFailedException in com.atlassian.crowd.embedded.core
 

Methods in com.atlassian.crowd.embedded.core that throw OperationFailedException
 Directory CrowdDirectoryServiceImpl.addDirectory(Directory directory)
           
 Group CrowdServiceImpl.addGroup(Group group)
           
 Group FilteredCrowdServiceImpl.addGroup(Group group)
           
 void CrowdServiceImpl.addGroupToGroup(Group childGroup, Group parentGroup)
           
 void FilteredCrowdServiceImpl.addGroupToGroup(Group childGroup, Group parentGroup)
           
 User CrowdServiceImpl.addUser(User user, java.lang.String credential)
           
 void CrowdServiceImpl.addUserToGroup(User user, Group group)
           
 void FilteredCrowdServiceImpl.addUserToGroup(User user, Group group)
           
 User CrowdServiceImpl.authenticate(java.lang.String name, java.lang.String credential)
           
 DirectorySynchronisationInformation CrowdDirectoryServiceImpl.getDirectorySynchronisationInformation(long directoryId)
           
 boolean CrowdDirectoryServiceImpl.isDirectorySynchronisable(long directoryId)
           
 boolean CrowdDirectoryServiceImpl.isDirectorySynchronising(long directoryId)
           
 boolean CrowdServiceImpl.isGroupDirectGroupMember(Group childGroup, Group parentGroup)
           
 boolean FilteredCrowdServiceImpl.isGroupDirectGroupMember(Group childGroup, Group parentGroup)
           
 boolean CrowdServiceImpl.isUserDirectGroupMember(User user, Group group)
           
 boolean FilteredCrowdServiceImpl.isUserDirectGroupMember(User user, Group group)
           
 void CrowdServiceImpl.removeAllGroupAttributes(Group group)
           
 void FilteredCrowdServiceImpl.removeAllGroupAttributes(Group group)
           
 void CrowdServiceImpl.removeAllUserAttributes(User user)
           
 boolean CrowdDirectoryServiceImpl.removeDirectory(long directoryId)
           
 boolean CrowdServiceImpl.removeGroup(Group group)
           
 boolean FilteredCrowdServiceImpl.removeGroup(Group group)
           
 void CrowdServiceImpl.removeGroupAttribute(Group group, java.lang.String attributeName)
           
 void FilteredCrowdServiceImpl.removeGroupAttribute(Group group, java.lang.String attributeName)
           
 boolean CrowdServiceImpl.removeGroupFromGroup(Group childGroup, Group parentGroup)
           
 boolean FilteredCrowdServiceImpl.removeGroupFromGroup(Group childGroup, Group parentGroup)
           
 boolean CrowdServiceImpl.removeUser(User user)
           
 void CrowdServiceImpl.removeUserAttribute(User user, java.lang.String attributeName)
           
 boolean CrowdServiceImpl.removeUserFromGroup(User user, Group group)
           
 boolean FilteredCrowdServiceImpl.removeUserFromGroup(User user, Group group)
           
 void CrowdDirectoryServiceImpl.setDirectoryPosition(long directoryId, int position)
           
 void CrowdServiceImpl.setGroupAttribute(Group group, java.lang.String attributeName, java.util.Set<java.lang.String> attributeValues)
           
 void FilteredCrowdServiceImpl.setGroupAttribute(Group group, java.lang.String attributeName, java.util.Set<java.lang.String> attributeValues)
           
 void CrowdServiceImpl.setGroupAttribute(Group group, java.lang.String attributeName, java.lang.String attributeValue)
           
 void FilteredCrowdServiceImpl.setGroupAttribute(Group group, java.lang.String attributeName, java.lang.String attributeValue)
           
 void CrowdServiceImpl.setUserAttribute(User user, java.lang.String attributeName, java.util.Set<java.lang.String> attributeValues)
           
 void CrowdServiceImpl.setUserAttribute(User user, java.lang.String attributeName, java.lang.String attributeValue)
           
 boolean CrowdDirectoryServiceImpl.supportsNestedGroups(long directoryId)
           
 void CrowdDirectoryServiceImpl.synchroniseDirectory(long directoryId)
           
 void CrowdDirectoryServiceImpl.synchroniseDirectory(long directoryId, boolean runInBackground)
           
 void CrowdDirectoryServiceImpl.testConnection(Directory directory)
           
 Directory CrowdDirectoryServiceImpl.updateDirectory(Directory directory)
           
 Group CrowdServiceImpl.updateGroup(Group group)
           
 Group FilteredCrowdServiceImpl.updateGroup(Group group)
           
 User CrowdServiceImpl.updateUser(User user)
           
 void CrowdServiceImpl.updateUserCredential(User user, java.lang.String credential)
           
 

Uses of OperationFailedException in com.atlassian.crowd.exception.runtime
 

Subclasses of OperationFailedException in com.atlassian.crowd.exception.runtime
 class CommunicationException
          A specific extension of the Runtime OperationFailedException that is thrown when the host application is unable to communicate with the remote User Directory.
 



Copyright © 2012 Atlassian. All Rights Reserved.