Uses of Class
com.atlassian.crowd.exception.InvalidAuthenticationException

Packages that use InvalidAuthenticationException
com.atlassian.crowd.acceptance.tests.client   
com.atlassian.crowd.acceptance.tests.client.load   
com.atlassian.crowd.directory   
com.atlassian.crowd.exception   
com.atlassian.crowd.integration.acegi   
com.atlassian.crowd.integration.acegi.user   
com.atlassian.crowd.integration.atlassianuser   
com.atlassian.crowd.integration.http   
com.atlassian.crowd.integration.osuser   
com.atlassian.crowd.integration.rest.service   
com.atlassian.crowd.integration.seraph   
com.atlassian.crowd.integration.seraph.v22   
com.atlassian.crowd.integration.seraph.v25   
com.atlassian.crowd.integration.springsecurity   
com.atlassian.crowd.integration.springsecurity.user   
com.atlassian.crowd.manager.application   
com.atlassian.crowd.manager.authentication   
com.atlassian.crowd.manager.directory   
com.atlassian.crowd.openid.server.action   
com.atlassian.crowd.plugin.application.springsecurity   
com.atlassian.crowd.plugin.rest.exception.mapper   
com.atlassian.crowd.plugin.rest.service.controller   
com.atlassian.crowd.plugin.rest.service.resource   
com.atlassian.crowd.security.demo.action   
com.atlassian.crowd.security.demo.action.group   
com.atlassian.crowd.security.demo.action.user   
com.atlassian.crowd.service   
com.atlassian.crowd.service.cache   
com.atlassian.crowd.service.client   
com.atlassian.crowd.service.soap.client   
com.atlassian.crowd.util   
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.acceptance.tests.client
 

Methods in com.atlassian.crowd.acceptance.tests.client that throw InvalidAuthenticationException
 void AuthenticationTokenTest.testAuthenticatePrincipalDifferentTokenAfterLogout()
           
 void AuthenticationTokenTest.testAuthenticatePrincipalDifferentUsersAuthenticationProducesDifferentTokens()
           
 void AuthenticationTokenTest.testAuthenticatePrincipalSameUserDifferentConditionProducesDifferentTokens()
           
 void AuthenticationTokenTest.testAuthenticatePrincipalSameUserDifferentUserAgentProducesSameTokens()
           
 void AuthenticationTokenTest.testAuthenticatePrincipalSuccessiveAuthenticationProducesSameToken()
           
 void AuthenticationTokenTest.testAuthenticateSimpleDifferentTokenAfterLogout()
           
 void AuthenticationTokenTest.testAuthenticateSimpleDifferentUsersAuthenticationProducesDifferentTokens()
           
 void AuthenticationTokenTest.testAuthenticateSimpleSuccessiveAuthenticationProducesSameToken()
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.acceptance.tests.client.load
 

Methods in com.atlassian.crowd.acceptance.tests.client.load that throw InvalidAuthenticationException
 void PrincipalAuthenticationLoadTest.testHammerAuthentications()
           
 void TokenValidationLoadTest.testHammerTokenValidation()
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.directory
 

Methods in com.atlassian.crowd.directory that throw InvalidAuthenticationException
 User RemoteCrowdDirectory.authenticate(java.lang.String username, PasswordCredential credential)
           
 User DelegatedAuthenticationDirectory.authenticate(java.lang.String name, PasswordCredential credential)
          In addition to the normal authentication behaviour, following a successful authentication the following may occur: If the user does not exist in the internal directory and DelegatedAuthenticationDirectory.ATTRIBUTE_CREATE_USER_ON_AUTH is enabled, the user's details will be added to the internal directory. If the user exists in the internal directory and DelegatedAuthenticationDirectory.ATTRIBUTE_UPDATE_USER_ON_AUTH is enabled, the user's details will be updated in the internal directory. A user marked as inactive locally will not be authenticated, retrieved or updated from the LDAP server.
 User AbstractInternalDirectory.authenticate(java.lang.String name, PasswordCredential credential)
           
 User RemoteDirectory.authenticate(java.lang.String name, PasswordCredential credential)
          Authenticates a user with the directory store.
 User SpringLDAPConnector.authenticate(java.lang.String name, PasswordCredential credential)
           
 User DbCachingRemoteDirectory.authenticate(java.lang.String name, PasswordCredential credential)
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.exception
 

Methods in com.atlassian.crowd.exception that return InvalidAuthenticationException
static InvalidAuthenticationException InvalidAuthenticationException.newInstanceWithName(java.lang.String name)
          Creates a new instance of an InvalidAuthenticationException with a default detail message using the name of the entity that failed to authenticate.
static InvalidAuthenticationException InvalidAuthenticationException.newInstanceWithName(java.lang.String name, java.lang.Throwable cause)
          Creates a new instance of an InvalidAuthenticationException with a default detail message using the name of the entity that failed to authenticate, and a cause.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.acegi
 

Methods in com.atlassian.crowd.integration.acegi that throw InvalidAuthenticationException
protected abstract  java.lang.String CrowdAuthenticationProvider.authenticate(java.lang.String username, java.lang.String password, ValidationFactor[] validationFactors)
          Authenticate a remote user and return the Crowd SSO token string.
protected  java.lang.String RemoteCrowdAuthenticationProvider.authenticate(java.lang.String username, java.lang.String password, ValidationFactor[] validationFactors)
           
protected abstract  boolean CrowdAuthenticationProvider.isAuthenticated(java.lang.String token, ValidationFactor[] validationFactors)
          Determine if a remote user is authenticated via SSO based on the supplied SSO token string and validation factors.
protected  boolean RemoteCrowdAuthenticationProvider.isAuthenticated(java.lang.String token, ValidationFactor[] validationFactors)
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.acegi.user
 

Methods in com.atlassian.crowd.integration.acegi.user that throw InvalidAuthenticationException
protected  org.acegisecurity.GrantedAuthority[] CrowdUserDetailsServiceImpl.getAuthorities(java.lang.String username)
          Requests the group memberships of the user from the Crowd Server.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.atlassianuser
 

Methods in com.atlassian.crowd.integration.atlassianuser that throw InvalidAuthenticationException
protected  java.util.List CrowdGroupManager.getAllGroups()
           
protected  java.util.List<SOAPPrincipal> CrowdEntityQueryParser.performAndUserSearch(java.util.List<com.atlassian.user.search.query.TermQuery> queries)
           
protected  java.util.List<SOAPPrincipal> CrowdEntityQueryParser.performOrUserSearch(java.util.List<com.atlassian.user.search.query.TermQuery> queries)
           
protected  java.util.List<SOAPPrincipal> CrowdEntityQueryParser.performUserSearch(com.atlassian.user.search.query.TermQuery query)
           
protected  java.util.List<com.atlassian.user.Group> CrowdEntityQueryParser.searchGroups(com.atlassian.user.search.query.GroupNameTermQuery query)
           
protected  java.util.List<com.atlassian.user.User> CrowdEntityQueryParser.searchUsers(com.atlassian.user.search.query.Query query)
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.http
 

Methods in com.atlassian.crowd.integration.http that throw InvalidAuthenticationException
 void HttpAuthenticatorImpl.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String username, java.lang.String password)
           
 void HttpAuthenticator.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String username, java.lang.String password)
          Authenticate a remote user using SSO.
 User CrowdHttpAuthenticatorImpl.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String username, java.lang.String password)
           
 User CrowdHttpAuthenticator.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String username, java.lang.String password)
          Authenticates the user based on provided credentials.
 User CacheAwareCrowdHttpAuthenticator.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String username, java.lang.String password)
           
 void HttpAuthenticatorImpl.authenticateWithoutValidatingPassword(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String username)
           
 void HttpAuthenticator.authenticateWithoutValidatingPassword(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String username)
          Authenticate a remote user using SSO, without validating their password.
 User CrowdHttpAuthenticatorImpl.authenticateWithoutValidatingPassword(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String username)
           
 User CrowdHttpAuthenticator.authenticateWithoutValidatingPassword(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String username)
          Authenticates the user without validating password.
 User CacheAwareCrowdHttpAuthenticator.authenticateWithoutValidatingPassword(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String username)
           
 SOAPPrincipal HttpAuthenticatorImpl.getPrincipal(javax.servlet.http.HttpServletRequest request)
           
 SOAPPrincipal HttpAuthenticator.getPrincipal(javax.servlet.http.HttpServletRequest request)
          Attempts to retrieve the principal from the request.
 User CrowdHttpAuthenticatorImpl.getUser(javax.servlet.http.HttpServletRequest request)
           
 User CrowdHttpAuthenticator.getUser(javax.servlet.http.HttpServletRequest request)
          Attempts to retrieve the currently authenticated User from the request.
 User CacheAwareCrowdHttpAuthenticator.getUser(javax.servlet.http.HttpServletRequest request)
           
 boolean HttpAuthenticatorImpl.isAuthenticated(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 boolean HttpAuthenticator.isAuthenticated(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Tests whether a request is authenticated via SSO.
 void HttpAuthenticatorImpl.logoff(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 void HttpAuthenticator.logoff(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Log off the SSO authenticated user.
 void CrowdHttpAuthenticatorImpl.logout(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 void CrowdHttpAuthenticator.logout(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
          Logs out the authenticated user.
 void CacheAwareCrowdHttpAuthenticator.logout(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
           
 void HttpAuthenticatorImpl.setPrincipalToken(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String token)
           
 void HttpAuthenticator.setPrincipalToken(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.lang.String token)
          Sets the underlying principal token on: the request: as an attribute, so the user is authenticated for the span of the request. the response: as a cookie, so the user is authenticated for subsequent requests.
 void HttpAuthenticatorImpl.verifyAuthentication(java.lang.String username, java.lang.String password)
           
 void HttpAuthenticator.verifyAuthentication(java.lang.String username, java.lang.String password)
          Authenticate a remote principal without using SSO.
 java.lang.String HttpAuthenticatorImpl.verifyAuthentication(java.lang.String username, java.lang.String password, ValidationFactor[] validationFactors)
           
 java.lang.String HttpAuthenticator.verifyAuthentication(java.lang.String username, java.lang.String password, ValidationFactor[] validationFactors)
          Verifies the authentication of a principal's username/password, given a set of validation factors.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.osuser
 

Methods in com.atlassian.crowd.integration.osuser that throw InvalidAuthenticationException
 void CrowdCredentialsProvider.fetchInCache(java.lang.String username)
          Fetches a user with the given username in the cache in case the user exists, but cannot be found from the cache yet.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.rest.service
 

Methods in com.atlassian.crowd.integration.rest.service that throw InvalidAuthenticationException
 void RestCrowdClient.addGroup(Group group)
           
 void RestCrowdClient.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RestCrowdClient.addUser(User user, PasswordCredential passwordCredential)
           
 void RestCrowdClient.addUserToGroup(java.lang.String username, java.lang.String groupName)
           
 java.lang.String RestCrowdClient.authenticateSSOUser(UserAuthenticationContext userAuthenticationContext)
           
 java.lang.String RestCrowdClient.authenticateSSOUserWithoutValidatingPassword(UserAuthenticationContext userAuthenticationContext)
           
 User RestCrowdClient.authenticateUser(java.lang.String username, java.lang.String password)
           
 User RestCrowdClient.findUserFromSSOToken(java.lang.String token)
           
 java.util.List<Group> RestCrowdClient.getChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 CookieConfiguration RestCrowdClient.getCookieConfiguration()
           
 java.lang.String RestCrowdClient.getCurrentEventToken()
           
 Group RestCrowdClient.getGroup(java.lang.String name)
          Get a group by name.
 java.util.List<Group> RestCrowdClient.getGroupsForNestedUser(java.lang.String userName, int startIndex, int maxResults)
           
 java.util.List<Group> RestCrowdClient.getGroupsForUser(java.lang.String userName, int startIndex, int maxResults)
           
 GroupWithAttributes RestCrowdClient.getGroupWithAttributes(java.lang.String name)
           
 java.lang.Iterable<Membership> RestCrowdClient.getMemberships()
           
 java.util.List<java.lang.String> RestCrowdClient.getNamesOfChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<java.lang.String> RestCrowdClient.getNamesOfGroupsForNestedUser(java.lang.String userName, int startIndex, int maxResults)
           
 java.util.List<java.lang.String> RestCrowdClient.getNamesOfGroupsForUser(java.lang.String userName, int startIndex, int maxResults)
           
 java.util.List<java.lang.String> RestCrowdClient.getNamesOfNestedChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<java.lang.String> RestCrowdClient.getNamesOfNestedUsersOfGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<java.lang.String> RestCrowdClient.getNamesOfParentGroupsForGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<java.lang.String> RestCrowdClient.getNamesOfParentGroupsForNestedGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<java.lang.String> RestCrowdClient.getNamesOfUsersOfGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<Group> RestCrowdClient.getNestedChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<User> RestCrowdClient.getNestedUsersOfGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 Events RestCrowdClient.getNewEvents(java.lang.String eventToken)
           
 java.util.List<Group> RestCrowdClient.getParentGroupsForGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 java.util.List<Group> RestCrowdClient.getParentGroupsForNestedGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 User RestCrowdClient.getUser(java.lang.String name)
           
 java.util.List<User> RestCrowdClient.getUsersOfGroup(java.lang.String groupName, int startIndex, int maxResults)
           
 UserWithAttributes RestCrowdClient.getUserWithAttributes(java.lang.String name)
           
 void RestCrowdClient.invalidateSSOToken(java.lang.String token)
           
 boolean RestCrowdClient.isGroupDirectGroupMember(java.lang.String childName, java.lang.String parentName)
           
 boolean RestCrowdClient.isUserDirectGroupMember(java.lang.String username, java.lang.String groupName)
           
 boolean RestCrowdClient.isUserNestedGroupMember(java.lang.String username, java.lang.String groupName)
           
 void RestCrowdClient.removeGroup(java.lang.String groupName)
           
 void RestCrowdClient.removeGroupAttributes(java.lang.String groupName, java.lang.String attributeName)
           
 void RestCrowdClient.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
           
 void RestCrowdClient.removeUser(java.lang.String username)
           
 void RestCrowdClient.removeUserAttributes(java.lang.String username, java.lang.String attributeName)
           
 void RestCrowdClient.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
           
 void RestCrowdClient.requestPasswordReset(java.lang.String username)
           
 void RestCrowdClient.requestUsernames(java.lang.String email)
           
 java.util.List<java.lang.String> RestCrowdClient.searchGroupNames(SearchRestriction searchRestriction, int startIndex, int maxResults)
           
 java.util.List<Group> RestCrowdClient.searchGroups(SearchRestriction searchRestriction, int startIndex, int maxResults)
           
 java.util.List<java.lang.String> RestCrowdClient.searchUserNames(SearchRestriction searchRestriction, int startIndex, int maxResults)
           
 java.util.List<User> RestCrowdClient.searchUsers(SearchRestriction searchRestriction, int startIndex, int maxResults)
           
 void RestCrowdClient.storeGroupAttributes(java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 void RestCrowdClient.storeUserAttributes(java.lang.String username, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
           
 void RestCrowdClient.testConnection()
           
 void RestCrowdClient.updateGroup(Group group)
           
 void RestCrowdClient.updateUser(User user)
           
 void RestCrowdClient.updateUserCredential(java.lang.String username, java.lang.String password)
           
 void RestCrowdClient.validateSSOAuthentication(java.lang.String token, java.util.List<ValidationFactor> validationFactors)
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.seraph
 

Methods in com.atlassian.crowd.integration.seraph that throw InvalidAuthenticationException
protected  void JIRAAuthenticator.fetchUserInCache(java.lang.String username)
           
protected  void CrowdAuthenticator.fetchUserInCache(java.lang.String username)
          Fetches a user with the given username in the cache, in case the user exists, but cannot be found from the cache yet.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.seraph.v22
 

Methods in com.atlassian.crowd.integration.seraph.v22 that throw InvalidAuthenticationException
protected  void JIRAAuthenticator.fetchUserInCache(java.lang.String username)
           
protected  void CrowdAuthenticator.fetchUserInCache(java.lang.String username)
          Fetches a user with the given username in the cache, in case the user exists, but cannot be found from the cache yet.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.seraph.v25
 

Methods in com.atlassian.crowd.integration.seraph.v25 that throw InvalidAuthenticationException
protected  void CrowdAuthenticator.fetchUserInCache(java.lang.String username)
          Fetches a user with the given username in the cache, in case the user exists, but cannot be found from the cache yet.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.springsecurity
 

Methods in com.atlassian.crowd.integration.springsecurity that throw InvalidAuthenticationException
protected  java.lang.String RemoteCrowdAuthenticationProvider.authenticate(java.lang.String username, java.lang.String password, ValidationFactor[] validationFactors)
           
protected abstract  java.lang.String CrowdAuthenticationProvider.authenticate(java.lang.String username, java.lang.String password, ValidationFactor[] validationFactors)
          Authenticate a remote user and return the Crowd SSO token string.
protected  boolean RemoteCrowdAuthenticationProvider.isAuthenticated(java.lang.String token, ValidationFactor[] validationFactors)
           
protected abstract  boolean CrowdAuthenticationProvider.isAuthenticated(java.lang.String token, ValidationFactor[] validationFactors)
          Determine if a remote user is authenticated via SSO based on the supplied SSO token string and validation factors.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.integration.springsecurity.user
 

Methods in com.atlassian.crowd.integration.springsecurity.user that throw InvalidAuthenticationException
protected  org.springframework.security.GrantedAuthority[] CrowdUserDetailsServiceImpl.getAuthorities(java.lang.String username)
          Requests the group memberships of the user from the Crowd Server.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.manager.application
 

Methods in com.atlassian.crowd.manager.application that throw InvalidAuthenticationException
 User ApplicationService.authenticateUser(Application application, java.lang.String username, PasswordCredential passwordCredential)
          Will attempt to authenticate the given user against the application.
 User TranslatingApplicationService.authenticateUser(Application application, java.lang.String username, PasswordCredential passwordCredential)
           
 User CachingApplicationService.authenticateUser(Application application, java.lang.String username, PasswordCredential passwordCredential)
           
 User ApplicationServiceGeneric.authenticateUser(Application application, java.lang.String username, PasswordCredential passwordCredential)
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.manager.authentication
 

Methods in com.atlassian.crowd.manager.authentication that throw InvalidAuthenticationException
 Token TokenAuthenticationManagerImpl.authenticateApplication(ApplicationAuthenticationContext authenticationContext)
           
 Token AliasingAwareTokenAuthenticationManager.authenticateApplication(ApplicationAuthenticationContext authenticationContext)
           
 Token TokenAuthenticationManager.authenticateApplication(ApplicationAuthenticationContext authenticationContext)
          Authenticates an application and generates an authentication token.
 Token TokenAuthenticationManagerImpl.authenticateUser(UserAuthenticationContext authenticateContext)
           
 Token AliasingAwareTokenAuthenticationManager.authenticateUser(UserAuthenticationContext authenticateContext)
           
 Token TokenAuthenticationManager.authenticateUser(UserAuthenticationContext authenticateContext)
          Authenticates a user and and generates an authentication token.
 Token TokenAuthenticationManagerImpl.authenticateUser(UserAuthenticationContext authenticationContext, boolean validatePassword, boolean ignoreCache)
           
 Token TokenAuthenticationManagerImpl.authenticateUserWithoutValidatingPassword(UserAuthenticationContext authenticateContext)
           
 Token AliasingAwareTokenAuthenticationManager.authenticateUserWithoutValidatingPassword(UserAuthenticationContext authenticateContext)
           
 Token TokenAuthenticationManager.authenticateUserWithoutValidatingPassword(UserAuthenticationContext authenticateContext)
          Feigns the authentication process for a user and creates a token for the authentication without validating the password.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.manager.directory
 

Methods in com.atlassian.crowd.manager.directory that throw InvalidAuthenticationException
 User DirectoryManager.authenticateUser(long directoryId, java.lang.String username, PasswordCredential passwordCredential)
           
 User DirectoryManagerGeneric.authenticateUser(long directoryId, java.lang.String username, PasswordCredential passwordCredential)
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.openid.server.action
 

Methods in com.atlassian.crowd.openid.server.action that throw InvalidAuthenticationException
 SOAPAttribute BaseAction.getAttribute(java.lang.String name)
           
 java.lang.String BaseAction.getFirstAttribute(java.lang.String name)
           
 java.lang.String BaseAction.getIdentifier()
           
 java.lang.String BaseAction.getPrincipalName()
          Gets the user's fullname for display.
 SOAPPrincipal BaseAction.getRemotePrincipal()
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.plugin.application.springsecurity
 

Methods in com.atlassian.crowd.plugin.application.springsecurity that throw InvalidAuthenticationException
protected  java.lang.String LocalCrowdAuthenticationProvider.authenticate(java.lang.String username, java.lang.String password, ValidationFactor[] validationFactors)
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.plugin.rest.exception.mapper
 

Methods in com.atlassian.crowd.plugin.rest.exception.mapper with parameters of type InvalidAuthenticationException
 javax.ws.rs.core.Response InvalidAuthenticationExceptionMapper.toResponse(InvalidAuthenticationException exception)
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.plugin.rest.service.controller
 

Methods in com.atlassian.crowd.plugin.rest.service.controller that throw InvalidAuthenticationException
 UserEntity AuthenticationController.authenticateUser(java.lang.String applicationName, java.lang.String username, PasswordEntity password, java.net.URI baseUri)
          Authenticates the user with the given username and password.
 SessionEntity TokenController.authenticateUser(java.lang.String applicationName, java.lang.String username, java.lang.String password, java.util.Collection<ValidationFactorEntity> validationFactorEntities, java.net.URI baseUri)
          Authenticates a user for the given application.
 SessionEntity TokenController.authenticateUserWithoutValidatingPassword(java.lang.String applicationName, java.lang.String username, java.util.Collection<ValidationFactorEntity> validationFactorEntities, java.net.URI baseUri)
          Feigns the authentication process for a user and creates a token for the authentication without validating the password.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.plugin.rest.service.resource
 

Methods in com.atlassian.crowd.plugin.rest.service.resource that throw InvalidAuthenticationException
 javax.ws.rs.core.Response TokenResource.authenticateUser(AuthenticationContextEntity authenticationContext, boolean validatePassword)
          Authenticates a user against the application and returns a Crowd SSO token.
 javax.ws.rs.core.Response AuthenticationResource.authenticateUser(java.lang.String username, PasswordEntity password)
          Authenticates a user.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.security.demo.action
 

Methods in com.atlassian.crowd.security.demo.action that throw InvalidAuthenticationException
 java.lang.String BaseAction.getDisplayName()
           
 User BaseAction.getRemoteUser()
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.security.demo.action.group
 

Methods in com.atlassian.crowd.security.demo.action.group that throw InvalidAuthenticationException
protected  void AddGroup.doValidation()
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.security.demo.action.user
 

Methods in com.atlassian.crowd.security.demo.action.user that throw InvalidAuthenticationException
protected  void ViewUser.processGeneral()
           
protected  void ViewUser.processMemberships()
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.service
 

Methods in com.atlassian.crowd.service that throw InvalidAuthenticationException
 void UserManager.addAllUsers(java.util.Collection<SOAPPrincipalWithCredential> users)
          Adds all users to Crowd.
 SOAPGroup GroupManager.addGroup(SOAPGroup group)
          Adds group to the Crowd server.
 void GroupMembershipManager.addMembership(java.lang.String userName, java.lang.String groupName)
          Adds a user identified by userName to the group identified by groupName.
 SOAPPrincipal UserManager.addUser(SOAPPrincipal user, PasswordCredential credential)
          Adds a user to Crowd.
 java.lang.String AuthenticationManager.authenticate(java.lang.String username, java.lang.String password)
          Authenticates a user, using just a username and password.
 java.lang.String AuthenticationManager.authenticate(UserAuthenticationContext authenticationContext)
          Authenticate a user.
 java.lang.String AuthenticationManager.authenticateWithoutValidatingPassword(UserAuthenticationContext authenticationContext)
          Authenticate a user without validating their password.
 void AuthenticatorUserCache.fetchInCache(java.lang.String username)
          Fetches a user with the given username in the cache, in case the user exists, but cannot be found from the cache yet.
 java.util.List GroupManager.getAllGroupNames()
          Deprecated. Since 1.4.
 java.util.List UserManager.getAllUserNames()
          Deprecated. Since 1.4.
 SOAPGroup GroupManager.getGroup(java.lang.String groupName)
          Given a groupName, returns a SOAPGroup that represents the group.
 java.util.List GroupMembershipManager.getMembers(java.lang.String groupName)
          Obtains a list of all users in the group identified by groupName, sorted naturally.
 java.util.List GroupMembershipManager.getMemberships(java.lang.String userName)
          Deprecated. Since 1.4
 SOAPPrincipal UserManager.getUser(java.lang.String userName)
          Given a userName, fetches the user's details, either from cache or from the Crowd server.
 SOAPPrincipal UserManager.getUserFromToken(java.lang.String token)
          Given an authentication token, retrieves the user associated with it.
 SOAPPrincipal UserManager.getUserWithAttributes(java.lang.String userName)
          Given a userName, fetches the user's details and their associated attributes, either from cache or from the Crowd server.
 void AuthenticationManager.invalidate(java.lang.String token)
          Marks the presented token as invalid, meaning that the principal it represents is no longer authenticated.
 boolean AuthenticationManager.isAuthenticated(java.lang.String token, ValidationFactor[] validationFactors)
          Checks that the token (as returned from authenticate() is still valid, given the validation factors.
 boolean GroupManager.isGroup(java.lang.String groupName)
          Returns true if groupName represents a valid group, false otherwise.
 boolean GroupMembershipManager.isMember(java.lang.String userName, java.lang.String groupName)
          Returns true if the user represented by userName is a member of groupName
 boolean UserManager.isUser(java.lang.String userName)
          Returns true if userName represents a valid user.
 void GroupManager.removeGroup(java.lang.String groupName)
          Removes a group from Crowd.
 void GroupMembershipManager.removeMembership(java.lang.String userName, java.lang.String groupName)
          Removes a user identified by userName from the group identified by groupName.
 void UserManager.removeUser(java.lang.String userName)
          Removes a user from Crowd.
 java.util.List GroupManager.searchGroups(SearchRestriction[] restrictions)
          Searches the list of all available groups based on the passed-in restrictions and returns a list of groups that match.
 java.util.List UserManager.searchUsers(SearchRestriction[] restrictions)
          Searches the list of all available users based on the passed-in restrictions and returns a list of users that match.
 void GroupManager.updateGroup(SOAPGroup group)
          Updates a group's details in Crowd.
 void UserManager.updatePassword(java.lang.String userName, PasswordCredential credential)
          Changes the password for the user specified by userName.
 void UserManager.updateUser(SOAPPrincipal user)
          Updates a user's details in Crowd.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.service.cache
 

Methods in com.atlassian.crowd.service.cache that throw InvalidAuthenticationException
 void CachingUserManager.addAllUsers(java.util.Collection<SOAPPrincipalWithCredential> users)
           
 SOAPGroup CachingGroupManager.addGroup(SOAPGroup group)
           
 void CachingGroupMembershipManager.addMembership(java.lang.String userName, java.lang.String groupName)
           
 SOAPPrincipal CachingUserManager.addUser(SOAPPrincipal user, PasswordCredential credential)
           
 java.lang.String SimpleAuthenticationManager.authenticate(java.lang.String username, java.lang.String password)
           
 java.lang.String CacheAwareAuthenticationManager.authenticate(java.lang.String username, java.lang.String password)
           
 java.lang.String SimpleAuthenticationManager.authenticate(UserAuthenticationContext authenticationContext)
           
 java.lang.String CacheAwareAuthenticationManager.authenticate(UserAuthenticationContext authenticationContext)
           
 java.lang.String SimpleAuthenticationManager.authenticateWithoutValidatingPassword(UserAuthenticationContext authenticationContext)
           
 java.lang.String CacheAwareAuthenticationManager.authenticateWithoutValidatingPassword(UserAuthenticationContext authenticationContext)
           
 java.util.List CachingGroupManager.getAllGroupNames()
           
 java.util.List CachingUserManager.getAllUserNames()
          This optimises the background getAllUserNames() call.
 SOAPGroup CachingGroupManager.getGroup(java.lang.String groupName)
          See also CachingGroupMembershipManager.getMembers(String)} for similar logic.
 java.util.List CachingGroupMembershipManager.getMembers(java.lang.String groupName)
          Also see CachingGroupManager.getGroup(String) for very similar logic.
 java.util.List CachingGroupMembershipManager.getMemberships(java.lang.String userName)
           
 SOAPPrincipal CachingUserManager.getUser(java.lang.String userName)
           
 SOAPPrincipal CachingUserManager.getUserFromToken(java.lang.String token)
          Note: the lookup is not currently cached - it will always hit the server.
 SOAPPrincipal CachingUserManager.getUserWithAttributes(java.lang.String userName)
           
 void SimpleAuthenticationManager.invalidate(java.lang.String token)
           
 void CacheAwareAuthenticationManager.invalidate(java.lang.String token)
           
 boolean SimpleAuthenticationManager.isAuthenticated(java.lang.String token, ValidationFactor[] validationFactors)
           
 boolean CacheAwareAuthenticationManager.isAuthenticated(java.lang.String token, ValidationFactor[] validationFactors)
           
 boolean CachingGroupManager.isGroup(java.lang.String groupName)
           
 boolean CachingGroupMembershipManager.isMember(java.lang.String userName, java.lang.String groupName)
           
 boolean CachingUserManager.isUser(java.lang.String userName)
          With JIRA we're guaranteed that if there are any names in the user list, all the names are in the user list.
 java.lang.Boolean CachingGroupMembershipManager.isUserOrGroup(java.lang.String name)
           
 void CachingGroupManager.removeGroup(java.lang.String groupName)
           
 void CachingGroupMembershipManager.removeMembership(java.lang.String userName, java.lang.String groupName)
           
 void CachingUserManager.removeUser(java.lang.String userName)
           
 java.util.List CachingGroupManager.searchGroups(SearchRestriction[] restrictions)
           
 java.util.List CachingUserManager.searchUsers(SearchRestriction[] restrictions)
           
 void CachingGroupManager.updateGroup(SOAPGroup group)
           
 void CachingUserManager.updatePassword(java.lang.String userName, PasswordCredential credential)
           
 void CachingUserManager.updateUser(SOAPPrincipal user)
           
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.service.client
 

Methods in com.atlassian.crowd.service.client that throw InvalidAuthenticationException
 void CrowdClient.addGroup(Group group)
          Adds a group to the remote Crowd server.
 void CrowdClient.addGroupToGroup(java.lang.String childGroup, java.lang.String parentGroup)
          Adds a group to a group.
 void CrowdClient.addUser(User user, PasswordCredential passwordCredential)
          Adds a new User to the remote Crowd server.
 void CrowdClient.addUserToGroup(java.lang.String username, java.lang.String groupName)
          Adds a user to a group.
 java.lang.String CrowdClient.authenticateSSOUser(UserAuthenticationContext userAuthenticationContext)
          Authenticates a Single-Sign-On (SSO) User.
 java.lang.String CrowdClient.authenticateSSOUserWithoutValidatingPassword(UserAuthenticationContext userAuthenticationContext)
          Authenticates a Single-Sign-On (SSO) User without validating password.
 User CrowdClient.authenticateUser(java.lang.String username, java.lang.String password)
          Authenticates a user with the server.
 User CrowdClient.findUserFromSSOToken(java.lang.String token)
          Returns the user from the specified user token.
 java.util.List<Group> CrowdClient.getChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups who are direct members of a group.
 CookieConfiguration CrowdClient.getCookieConfiguration()
          Returns the cookie configuration.
 java.lang.String CrowdClient.getCurrentEventToken()
          Returns a token that can be used for querying events that have happened after the token was generated.
 Group CrowdClient.getGroup(java.lang.String name)
          Gets a group by name.
 java.util.List<Group> CrowdClient.getGroupsForNestedUser(java.lang.String userName, int startIndex, int maxResults)
          Searches for groups that a user is a nested member of.
 java.util.List<Group> CrowdClient.getGroupsForUser(java.lang.String userName, int startIndex, int maxResults)
          Searches for groups that a user is a direct member of.
 GroupWithAttributes CrowdClient.getGroupWithAttributes(java.lang.String name)
          Gets a group with attributes by name.
 java.lang.Iterable<Membership> CrowdClient.getMemberships()
          Gets the full group membership details for all groups with all direct user members and child groups.
 java.util.List<java.lang.String> CrowdClient.getNamesOfChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups who are direct members of a group, returning the group names.
 java.util.List<java.lang.String> CrowdClient.getNamesOfGroupsForNestedUser(java.lang.String userName, int startIndex, int maxResults)
          Searches for groups that a user is a nested member of, returning the group names.
 java.util.List<java.lang.String> CrowdClient.getNamesOfGroupsForUser(java.lang.String userName, int startIndex, int maxResults)
          Searches for groups that a user is a direct member of, returning the group names.
 java.util.List<java.lang.String> CrowdClient.getNamesOfNestedChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups who are nested members of a group, returning the group names.
 java.util.List<java.lang.String> CrowdClient.getNamesOfNestedUsersOfGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for users who are nested members of a group, returning the user names.
 java.util.List<java.lang.String> CrowdClient.getNamesOfParentGroupsForGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups that a group is a direct member of, returning the group names.
 java.util.List<java.lang.String> CrowdClient.getNamesOfParentGroupsForNestedGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups that a group is a nested member of, returning the group names.
 java.util.List<java.lang.String> CrowdClient.getNamesOfUsersOfGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for users who are direct members of a group, returning the user names.
 java.util.List<Group> CrowdClient.getNestedChildGroupsOfGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups who are nested members of a group.
 java.util.List<User> CrowdClient.getNestedUsersOfGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for users who are nested members of a group.
 Events CrowdClient.getNewEvents(java.lang.String eventToken)
          Returns an events object which contains a new eventToken and events that happened after the given eventToken was generated.
 java.util.List<Group> CrowdClient.getParentGroupsForGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups that a group is a direct member of.
 java.util.List<Group> CrowdClient.getParentGroupsForNestedGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for groups that a group is a nested member of.
 User CrowdClient.getUser(java.lang.String name)
          Gets a User by user name.
 java.util.List<User> CrowdClient.getUsersOfGroup(java.lang.String groupName, int startIndex, int maxResults)
          Searches for users who are direct members of a group.
 UserWithAttributes CrowdClient.getUserWithAttributes(java.lang.String name)
          Gets a User with Attributes by user name.
 void CrowdClient.invalidateSSOToken(java.lang.String token)
          Invalidates a token.
 boolean CrowdClient.isGroupDirectGroupMember(java.lang.String childName, java.lang.String parentName)
          Tests if a group is a direct member of a group.
 boolean CrowdClient.isUserDirectGroupMember(java.lang.String username, java.lang.String groupName)
          Tests if a user is a direct member of a group.
 boolean CrowdClient.isUserNestedGroupMember(java.lang.String username, java.lang.String groupName)
          Tests if a user is a nested member of a group.
 void CrowdClient.removeGroup(java.lang.String groupName)
          Removes a group from the remote Crowd server
 void CrowdClient.removeGroupAttributes(java.lang.String groupName, java.lang.String attributeName)
          Removes a group attribute (set) from the server.
 void CrowdClient.removeGroupFromGroup(java.lang.String childGroup, java.lang.String parentGroup)
          Removes a group to a group.
 void CrowdClient.removeUser(java.lang.String username)
          Removes a user from the remote Crowd server
 void CrowdClient.removeUserAttributes(java.lang.String username, java.lang.String attributeName)
          Removes a user attribute from the server.
 void CrowdClient.removeUserFromGroup(java.lang.String username, java.lang.String groupName)
          Removes a user from a group.
 void CrowdClient.requestPasswordReset(java.lang.String username)
          Requests a password reset.
 void CrowdClient.requestUsernames(java.lang.String email)
          Sends the usernames associated with the given email address.
 java.util.List<java.lang.String> CrowdClient.searchGroupNames(SearchRestriction searchRestriction, int startIndex, int maxResults)
          Searches for group names matching the searchRestriction criteria.
 java.util.List<Group> CrowdClient.searchGroups(SearchRestriction searchRestriction, int startIndex, int maxResults)
          Searches for groups matching the following criteria.
 java.util.List<java.lang.String> CrowdClient.searchUserNames(SearchRestriction searchRestriction, int startIndex, int maxResults)
          Searches for usernames matching the searchRestriction criteria.
 java.util.List<User> CrowdClient.searchUsers(SearchRestriction searchRestriction, int startIndex, int maxResults)
          Searches for users matching the following criteria.
 void CrowdClient.storeGroupAttributes(java.lang.String groupName, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
          Stores the group's attributes on the remote Crowd server.
 void CrowdClient.storeUserAttributes(java.lang.String username, java.util.Map<java.lang.String,java.util.Set<java.lang.String>> attributes)
          Stores the user's attributes on the remote Crowd server.
 void CrowdClient.testConnection()
          Tests if the connection is OK.
 void CrowdClient.updateGroup(Group group)
          Updates a group on the remote Crowd server.
 void CrowdClient.updateUser(User user)
          Updates a user on the remote Crowd server.
 void CrowdClient.updateUserCredential(java.lang.String username, java.lang.String password)
          Updates the user's password on the remote Crowd server.
 void CrowdClient.validateSSOAuthentication(java.lang.String token, java.util.List<ValidationFactor> validationFactors)
          Validates the SSO authentication.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.service.soap.client
 

Methods in com.atlassian.crowd.service.soap.client that throw InvalidAuthenticationException
 void SecurityServerClientImpl.addAllPrincipals(java.util.Collection<SOAPPrincipalWithCredential> principals)
           
 void SecurityServerClient.addAllPrincipals(java.util.Collection<SOAPPrincipalWithCredential> principals)
          Adds principals to the application's assigned directory.
 void SecurityServerClientImpl.addAttributeToGroup(java.lang.String group, SOAPAttribute attribute)
           
 void SecurityServerClient.addAttributeToGroup(java.lang.String group, SOAPAttribute attribute)
          Adds an attribute to a group that is in the application's assigned directory.
 void SecurityServerClientImpl.addAttributeToPrincipal(java.lang.String principal, SOAPAttribute attribute)
           
 void SecurityServerClient.addAttributeToPrincipal(java.lang.String principal, SOAPAttribute attribute)
          Adds an attribute to a principal who is in the application's assigned directory.
 SOAPGroup SecurityServerClientImpl.addGroup(SOAPGroup group)
           
 SOAPGroup SecurityServerClient.addGroup(SOAPGroup group)
          Adds a group to the application's assigned directory.
 SOAPPrincipal SecurityServerClientImpl.addPrincipal(SOAPPrincipal principal, PasswordCredential credential)
           
 SOAPPrincipal SecurityServerClient.addPrincipal(SOAPPrincipal principal, PasswordCredential credential)
          Adds a principal to the application's assigned directory.
 void SecurityServerClientImpl.addPrincipalToGroup(java.lang.String principal, java.lang.String group)
           
 void SecurityServerClient.addPrincipalToGroup(java.lang.String principal, java.lang.String group)
          Adds a principal to a group for the application's assigned directory.
 void SecurityServerClientImpl.addPrincipalToRole(java.lang.String principal, java.lang.String role)
           
 void SecurityServerClient.addPrincipalToRole(java.lang.String principal, java.lang.String role)
          Adds the principal to a role for the application's assigned directory.
 SOAPRole SecurityServerClientImpl.addRole(SOAPRole role)
           
 SOAPRole SecurityServerClient.addRole(SOAPRole role)
          Adds a role to the application's assigned directory.
 void SecurityServerClientImpl.authenticate()
           
 void SecurityServerClient.authenticate()
          Authenticate the client using the application name and password from crowd.properties.
 java.lang.String SecurityServerClientImpl.authenticatePrincipal(UserAuthenticationContext userAuthenticationContext)
           
 java.lang.String SecurityServerClient.authenticatePrincipal(UserAuthenticationContext userAuthenticationContext)
          Authenticates a principal who is in the application's assigned directory.
 java.lang.String SecurityServerClientImpl.authenticatePrincipalSimple(java.lang.String username, java.lang.String password)
           
 java.lang.String SecurityServerClient.authenticatePrincipalSimple(java.lang.String username, java.lang.String password)
          Authenticates a principal without SSO details utilizing centralized authentication only.
 java.lang.String SecurityServerClientImpl.createPrincipalToken(java.lang.String username, ValidationFactor[] validationFactors)
           
 java.lang.String SecurityServerClient.createPrincipalToken(java.lang.String username, ValidationFactor[] validationFactors)
          Authenticates a principal without validating a password.
 java.lang.String[] SecurityServerClientImpl.findAllGroupNames()
           
 java.lang.String[] SecurityServerClient.findAllGroupNames()
          Finds all of the groups who are visible in the application's assigned directory.
 SOAPNestableGroup[] SecurityServerClientImpl.findAllGroupRelationships()
           
 SOAPNestableGroup[] SecurityServerClient.findAllGroupRelationships()
          Finds all of the groups who are visible in the application's assigned directory.
 SOAPGroup[] SecurityServerClientImpl.findAllGroups()
           
 SOAPGroup[] SecurityServerClient.findAllGroups()
          Retrieves all groups in the application's assigned directories.
 java.lang.String[] SecurityServerClientImpl.findAllPrincipalNames()
           
 java.lang.String[] SecurityServerClient.findAllPrincipalNames()
          Finds all of the principals who are visible in the application's assigned directory.
 SOAPPrincipal[] SecurityServerClientImpl.findAllPrincipals()
           
 SOAPPrincipal[] SecurityServerClient.findAllPrincipals()
          Retrieves all principals in the application's assigned directories.
 java.lang.String[] SecurityServerClientImpl.findAllRoleNames()
           
 java.lang.String[] SecurityServerClient.findAllRoleNames()
          Finds all of the roles who are visible in the application's assigned directory.
 SOAPRole[] SecurityServerClientImpl.findAllRoles()
           
 SOAPRole[] SecurityServerClient.findAllRoles()
          Retrieves all roles in the application's assigned directories.
 SOAPGroup SecurityServerClientImpl.findGroupByName(java.lang.String name)
           
 SOAPGroup SecurityServerClient.findGroupByName(java.lang.String name)
          Find a group by name for the application's assigned directory.
 java.lang.String[] SecurityServerClientImpl.findGroupMemberships(java.lang.String principalName)
           
 java.lang.String[] SecurityServerClient.findGroupMemberships(java.lang.String principalName)
          Finds all the groups the principal is a direct member of.
 SOAPGroup SecurityServerClientImpl.findGroupWithAttributesByName(java.lang.String name)
           
 SOAPGroup SecurityServerClient.findGroupWithAttributesByName(java.lang.String name)
          Find a group by name for the application's assigned directory.
 SOAPPrincipal SecurityServerClientImpl.findPrincipalByName(java.lang.String name)
           
 SOAPPrincipal SecurityServerClient.findPrincipalByName(java.lang.String name)
          Finds a principal by name who is in the application's assigned directory.
 SOAPPrincipal SecurityServerClientImpl.findPrincipalByToken(java.lang.String key)
           
 SOAPPrincipal SecurityServerClient.findPrincipalByToken(java.lang.String key)
          Finds a principal by token.
 SOAPPrincipal SecurityServerClientImpl.findPrincipalWithAttributesByName(java.lang.String name)
           
 SOAPPrincipal SecurityServerClient.findPrincipalWithAttributesByName(java.lang.String name)
          Finds a principal by name who is in the application's assigned directory.
 SOAPRole SecurityServerClientImpl.findRoleByName(java.lang.String name)
           
 SOAPRole SecurityServerClient.findRoleByName(java.lang.String name)
          Finds a role by name for the application's assigned directory.
 java.lang.String[] SecurityServerClientImpl.findRoleMemberships(java.lang.String principalName)
           
 java.lang.String[] SecurityServerClient.findRoleMemberships(java.lang.String principalName)
          Finds all the roles the principal is a member of.
 AuthenticatedToken SecurityServerClientImpl.getApplicationToken()
          Retrieve the current application token.
 long SecurityServerClientImpl.getCacheTime()
           
 long SecurityServerClient.getCacheTime()
          Deprecated. This method is now implemented by the crowd-ehcache.xml configuration file.
 SOAPCookieInfo SecurityServerClientImpl.getCookieInfo()
           
 SOAPCookieInfo SecurityServerClient.getCookieInfo()
          Returns information needed to set the SSO cookie correctly.
 java.lang.String SecurityServerClientImpl.getDomain()
           
 java.lang.String SecurityServerClient.getDomain()
          This will return the domain configured in Crowd or null if no domain has been set.
 java.lang.String[] SecurityServerClientImpl.getGrantedAuthorities()
           
 java.lang.String[] SecurityServerClient.getGrantedAuthorities()
          Will return the List of group names that have been given access to connect to the application
 void SecurityServerClientImpl.invalidateToken(java.lang.String token)
           
 void SecurityServerClient.invalidateToken(java.lang.String token)
          Invalidates a principal token for all integrated applications.
 boolean SecurityServerClientImpl.isCacheEnabled()
           
 boolean SecurityServerClient.isCacheEnabled()
          Checks if the client application should cache security information from the Crowd server.
 boolean SecurityServerClientImpl.isGroupMember(java.lang.String group, java.lang.String principal)
           
 boolean SecurityServerClient.isGroupMember(java.lang.String group, java.lang.String principal)
          Checks if a principal is a member of a group for the application's assigned directory.
 boolean SecurityServerClientImpl.isRoleMember(java.lang.String role, java.lang.String principal)
           
 boolean SecurityServerClient.isRoleMember(java.lang.String role, java.lang.String principal)
          Checks if a principal is a member of a role for the application's assigned directory.
 boolean SecurityServerClientImpl.isValidToken(java.lang.String principalToken, ValidationFactor[] validationFactors)
           
 boolean SecurityServerClient.isValidToken(java.lang.String principalToken, ValidationFactor[] validationFactors)
          Checks if the principal's current token is still valid.
 void SecurityServerClientImpl.removeAttributeFromGroup(java.lang.String group, java.lang.String attribute)
           
 void SecurityServerClient.removeAttributeFromGroup(java.lang.String group, java.lang.String attribute)
          Removes an attribute from a group that is in the application's assigned directory.
 void SecurityServerClientImpl.removeAttributeFromPrincipal(java.lang.String principal, java.lang.String attribute)
           
 void SecurityServerClient.removeAttributeFromPrincipal(java.lang.String principal, java.lang.String attribute)
          Removes an attribute from a principal who is in the application's assigned directory.
 void SecurityServerClientImpl.removeGroup(java.lang.String group)
           
 void SecurityServerClient.removeGroup(java.lang.String group)
          Removes a group from the application's assigned directory.
 void SecurityServerClientImpl.removePrincipal(java.lang.String principal)
           
 void SecurityServerClient.removePrincipal(java.lang.String principal)
          Removes a principal from the application's assigned directory.
 void SecurityServerClientImpl.removePrincipalFromGroup(java.lang.String principal, java.lang.String group)
           
 void SecurityServerClient.removePrincipalFromGroup(java.lang.String principal, java.lang.String group)
          Removes a principal from a group for the application's assigned directory.
 void SecurityServerClientImpl.removePrincipalFromRole(java.lang.String principal, java.lang.String role)
           
 void SecurityServerClient.removePrincipalFromRole(java.lang.String principal, java.lang.String role)
          Removes a principal from a role for the application's assigned directory.
 void SecurityServerClientImpl.removeRole(java.lang.String role)
           
 void SecurityServerClient.removeRole(java.lang.String role)
          Removes a role from the application's assigned directory.
 void SecurityServerClientImpl.resetPrincipalCredential(java.lang.String principal)
           
 void SecurityServerClient.resetPrincipalCredential(java.lang.String principal)
          Resets a principal's password credential to a random password and emails the new password who is in the application's assigned directory.
 SOAPGroup[] SecurityServerClientImpl.searchGroups(SearchRestriction[] searchRestrictions)
           
 SOAPGroup[] SecurityServerClient.searchGroups(SearchRestriction[] searchRestrictions)
          Searches for groups that are in the application's assigned directory.
 SOAPPrincipal[] SecurityServerClientImpl.searchPrincipals(SearchRestriction[] searchRestrictions)
           
 SOAPPrincipal[] SecurityServerClient.searchPrincipals(SearchRestriction[] searchRestrictions)
          Searches for principals that are in the application's assigned directory.
 SOAPRole[] SecurityServerClientImpl.searchRoles(SearchRestriction[] searchRestrictions)
           
 SOAPRole[] SecurityServerClient.searchRoles(SearchRestriction[] searchRestrictions)
          Searches for roles that are in the application's assigned directory.
 void SecurityServerClientImpl.updateGroup(java.lang.String group, java.lang.String description, boolean active)
           
 void SecurityServerClient.updateGroup(java.lang.String group, java.lang.String description, boolean active)
          Updates the first group located from the list of directories assigned to an application Available fields that can be updated are description and active
 void SecurityServerClientImpl.updateGroupAttribute(java.lang.String name, SOAPAttribute attribute)
           
 void SecurityServerClient.updateGroupAttribute(java.lang.String name, SOAPAttribute attribute)
          Updates an attribute for a group that is in the application's assigned directory.
 void SecurityServerClientImpl.updatePrincipalAttribute(java.lang.String name, SOAPAttribute attribute)
           
 void SecurityServerClient.updatePrincipalAttribute(java.lang.String name, SOAPAttribute attribute)
          Updates an attribute for a principal who is in the application's assigned directory.
 void SecurityServerClientImpl.updatePrincipalCredential(java.lang.String principal, PasswordCredential credential)
           
 void SecurityServerClient.updatePrincipalCredential(java.lang.String principal, PasswordCredential credential)
          Updates the password credential for a principal who is in the application's assigned directory.
 

Uses of InvalidAuthenticationException in com.atlassian.crowd.util
 

Methods in com.atlassian.crowd.util with parameters of type InvalidAuthenticationException
static void SoapExceptionTranslator.throwSoapEquivalentCheckedException(InvalidAuthenticationException e)
           
 

Methods in com.atlassian.crowd.util that throw InvalidAuthenticationException
static void SoapExceptionTranslator.throwEquivalentCheckedException(InvalidAuthenticationException e)
           
 



Copyright © 2012 Atlassian. All Rights Reserved.