Uses of Class
com.atlassian.crowd.integration.exception.InvalidAuthorizationTokenException

Packages that use InvalidAuthorizationTokenException
com.atlassian.crowd.integration.http   
com.atlassian.crowd.integration.service.soap.client   
com.atlassian.crowd.integration.service.soap.server   
 

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

Methods in com.atlassian.crowd.integration.http that throw InvalidAuthorizationTokenException
 void HttpAuthenticator.authenticate(HttpServletRequest request, HttpServletResponse response, String username, String password)
          Authenticate a remote user using SSO.
 void HttpAuthenticatorImpl.authenticate(HttpServletRequest request, HttpServletResponse response, String username, String password)
          Authenticate a remote user using SSO.
 SOAPPrincipal HttpAuthenticator.getPrincipal(HttpServletRequest request)
          Attempts to retrive the principal from the request.
 SOAPPrincipal HttpAuthenticatorImpl.getPrincipal(HttpServletRequest request)
          Attempts to retrive the principal from the request.
 boolean HttpAuthenticator.isAuthenticated(HttpServletRequest request, HttpServletResponse response)
          Tests whether a request is authenticated via SSO.
 boolean HttpAuthenticatorImpl.isAuthenticated(HttpServletRequest request, HttpServletResponse response)
           
 void HttpAuthenticator.logoff(HttpServletRequest request, HttpServletResponse response)
          Log off the SSO authenticated user.
 void HttpAuthenticatorImpl.logoff(HttpServletRequest request, HttpServletResponse response)
          Log off the SSO authenticated user.
 void HttpAuthenticator.setPrincipalToken(HttpServletRequest request, HttpServletResponse response, 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.setPrincipalToken(HttpServletRequest request, HttpServletResponse response, 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 HttpAuthenticator.verifyAuthentication(String username, String password)
          Authenticate a remote principal without using SSO.
 void HttpAuthenticatorImpl.verifyAuthentication(String username, String password)
          Authenticate a remote principal without using SSO.
 String HttpAuthenticator.verifyAuthentication(String username, String password, ValidationFactor[] validationFactors)
          Verifies the authentication of a principal's username/password, given a set of validation factors.
 String HttpAuthenticatorImpl.verifyAuthentication(String username, String password, ValidationFactor[] validationFactors)
          Verifies the authentication of a principal's username/password, given a set of validation factors.
 

Uses of InvalidAuthorizationTokenException in com.atlassian.crowd.integration.service.soap.client
 

Methods in com.atlassian.crowd.integration.service.soap.client that throw InvalidAuthorizationTokenException
 void SecurityServerClient.addAttributeToPrincipal(String principal, SOAPAttribute attribute)
          Adds an attribute to a principal who is in the application's assigned directory.
 void SecurityServerClientImpl.addAttributeToPrincipal(String principal, SOAPAttribute attribute)
          Adds an attribute to a principal who is in the application's assigned directory.
 SOAPGroup SecurityServerClient.addGroup(SOAPGroup group)
          Adds a group to the application's assigned directory.
 SOAPGroup SecurityServerClientImpl.addGroup(SOAPGroup group)
          Adds a group to the application's assigned directory.
 SOAPPrincipal SecurityServerClient.addPrincipal(SOAPPrincipal principal, PasswordCredential credential)
          Adds a principal to the application's assigned directory.
 SOAPPrincipal SecurityServerClientImpl.addPrincipal(SOAPPrincipal principal, PasswordCredential credential)
          Adds a principal to the application's assigned directory.
 void SecurityServerClient.addPrincipalToGroup(String principal, String group)
          Adds a principal to a group for the application's assigned directory.
 void SecurityServerClientImpl.addPrincipalToGroup(String principal, String group)
          Adds a principal to a group for the application's assigned directory.
 void SecurityServerClient.addPrincipalToRole(String principal, String role)
          Adds the principal to a role for the application's assigned directory.
 void SecurityServerClientImpl.addPrincipalToRole(String principal, String role)
          Adds the principal to a role for the application's assigned directory.
 SOAPRole SecurityServerClient.addRole(SOAPRole role)
          Adds a role to the application's assigned directory.
 SOAPRole SecurityServerClientImpl.addRole(SOAPRole role)
          Adds a role to the application's assigned directory.
 void SecurityServerClient.authenticate()
          Authenticate the client using the application name and password from crowd.properties.
 void SecurityServerClientImpl.authenticate()
          Authenticate the client using the application name and password from crowd.properties.
 String SecurityServerClient.authenticatePrincipal(PrincipalAuthenticationContext principalAuthenticationContext)
          Authenticates a principal verses the calling who is in the application's assigned directory.
 String SecurityServerClientImpl.authenticatePrincipal(PrincipalAuthenticationContext principalAuthenticationContext)
          Authenticates a principal verses the calling who is in the application's assigned directory.
 String SecurityServerClient.authenticatePrincipalSimple(String username, String password)
          Authentiates a principal without SSO details utilizing centralized authentication only.
 String SecurityServerClientImpl.authenticatePrincipalSimple(String username, String password)
          Authentiates a principal without SSO details utilizing centralized authentication only.
 String SecurityServerClient.createPrincipalToken(String username, ValidationFactor[] validationFactors)
          Authenticates a principal without validating a password.
 String SecurityServerClientImpl.createPrincipalToken(String username, ValidationFactor[] validationFactors)
          Authenticates a principal without validating a password.
 String[] SecurityServerClient.findAllGroupNames()
          Finds all of the groups who are visible in the application's assigned directory.
 String[] SecurityServerClientImpl.findAllGroupNames()
          Finds all of the groups who are visible in the application's assigned directory.
 SOAPNestableGroup[] SecurityServerClient.findAllGroupRelationships()
          Finds all of the groups who are visible in the application's assigned directory.
 SOAPNestableGroup[] SecurityServerClientImpl.findAllGroupRelationships()
          Finds all of the groups who are visible in the application's assigned directory.
 SOAPGroup[] SecurityServerClient.findAllGroups()
          Retrives all groups in the application's assigned directories.
 SOAPGroup[] SecurityServerClientImpl.findAllGroups()
          Retrives all groups in the application's assigned directories.
 String[] SecurityServerClient.findAllPrincipalNames()
          Finds all of the principals who are visable in the application's assigned directory.
 String[] SecurityServerClientImpl.findAllPrincipalNames()
          Finds all of the principals who are visable in the application's assigned directory.
 SOAPPrincipal[] SecurityServerClient.findAllPrincipals()
          Retrives all principals in the application's assigned directories.
 SOAPPrincipal[] SecurityServerClientImpl.findAllPrincipals()
          Retrives all principals in the application's assigned directories.
 String[] SecurityServerClient.findAllRoleNames()
          Finds all of the roles who are visable in the application's assigned directory.
 String[] SecurityServerClientImpl.findAllRoleNames()
          Finds all of the roles who are visable in the application's assigned directory.
 SOAPRole[] SecurityServerClient.findAllRoles()
          Retrives all roles in the application's assigned directories.
 SOAPRole[] SecurityServerClientImpl.findAllRoles()
          Retrives all roles in the application's assigned directories.
 SOAPGroup SecurityServerClient.findGroupByName(String name)
          Find a group by name for the application's assigned directory.
 SOAPGroup SecurityServerClientImpl.findGroupByName(String name)
          Find a group by name for the application's assigned directory.
 String[] SecurityServerClient.findGroupMemberships(String principalName)
          Finds all the groups the principal is a member of.
 String[] SecurityServerClientImpl.findGroupMemberships(String principalName)
          Finds all the groups the principal is a member of.
 SOAPPrincipal SecurityServerClient.findPrincipalByName(String name)
          Finds a principal by name who is in the application's assigned directory.
 SOAPPrincipal SecurityServerClientImpl.findPrincipalByName(String name)
          Finds a principal by name who is in the application's assigned directory.
 SOAPPrincipal SecurityServerClient.findPrincipalByToken(String key)
          Finds a principal by token.
 SOAPPrincipal SecurityServerClientImpl.findPrincipalByToken(String key)
          Finds a principal by token.
 SOAPRole SecurityServerClient.findRoleByName(String name)
          Finds a role by name for the application's assigned directory.
 SOAPRole SecurityServerClientImpl.findRoleByName(String name)
          Finds a role by name for the application's assigned directory.
 String[] SecurityServerClient.findRoleMemberships(String principalName)
          Finds all the roles the principal is a member of.
 String[] SecurityServerClientImpl.findRoleMemberships(String principalName)
          Finds all the roles the principal is a member of.
protected  AuthenticatedToken SecurityServerClientImpl.getApplicationToken()
          Retrieve the current application token.
 long SecurityServerClient.getCacheTime()
          Deprecated. This method is now implemented by the crowd-ehache.xml configuration file.
 long SecurityServerClientImpl.getCacheTime()
          Deprecated. This method is now implemented by the crowd-ehache.xml configuration file.
 String SecurityServerClient.getDomain()
          This will return the domain configured in Crowd or null if no domain has been set.
 String SecurityServerClientImpl.getDomain()
          This will return the domain configured in Crowd or null if no domain has been set.
 void SecurityServerClient.invalidateToken(String token)
          Invalidates a principal token for all integrated applications.
 void SecurityServerClientImpl.invalidateToken(String token)
          Invalidates a principal token for all integrated applications.
 boolean SecurityServerClient.isCacheEnabled()
          Checks if the client application should cache security information from the Crowd server.
 boolean SecurityServerClientImpl.isCacheEnabled()
          Checks if the client application should cache security information from the Crowd server.
 boolean SecurityServerClient.isGroupMember(String group, String principal)
          Checks if a prinicipal is a member of a group for the application's assigned directory.
 boolean SecurityServerClientImpl.isGroupMember(String group, String principal)
          Checks if a prinicipal is a member of a group for the application's assigned directory.
 boolean SecurityServerClient.isRoleMember(String role, String principal)
          Checks if a principal is a member of a role for the application's assigned directory.
 boolean SecurityServerClientImpl.isRoleMember(String role, String principal)
          Checks if a principal is a member of a role for the application's assigned directory.
 boolean SecurityServerClient.isValidToken(String principalToken, ValidationFactor[] validationFactors)
          Checks if the principal's current token is still valid.
 boolean SecurityServerClientImpl.isValidToken(String principalToken, ValidationFactor[] validationFactors)
          Checks if the principal's current token is still valid.
 void SecurityServerClient.removeAttributeFromPrincipal(String principal, String attribute)
          Removes an attribute from a principal who is in the application's assigned directory.
 void SecurityServerClientImpl.removeAttributeFromPrincipal(String principal, String attribute)
          Removes an attribute from a principal who is in the application's assigned directory.
 void SecurityServerClient.removeGroup(String group)
          Removes a group from the applciation's assigned directory.
 void SecurityServerClientImpl.removeGroup(String group)
          Removes a group from the applciation's assigned directory.
 void SecurityServerClient.removePrincipal(String principal)
          Removes a principal from the application's assigned directory.
 void SecurityServerClientImpl.removePrincipal(String principal)
          Removes a principal from the application's assigned directory.
 void SecurityServerClient.removePrincipalFromGroup(String principal, String group)
          Removes a principal from a group for the application's assigned directory.
 void SecurityServerClientImpl.removePrincipalFromGroup(String principal, String group)
          Removes a principal from a group for the application's assigned directory.
 void SecurityServerClient.removePrincipalFromRole(String principal, String role)
          Removes a principal from a role for the application's assigned directory.
 void SecurityServerClientImpl.removePrincipalFromRole(String principal, String role)
          Removes a principal from a role for the application's assigned directory.
 void SecurityServerClient.removeRole(String role)
          Removes a role from the application's assigned directory.
 void SecurityServerClientImpl.removeRole(String role)
          Removes a role from the application's assigned directory.
 void SecurityServerClient.resetPrincipalCredential(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.
 void SecurityServerClientImpl.resetPrincipalCredential(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[] SecurityServerClient.searchGroups(SearchRestriction[] searchRestrictions)
          Searches for groups that are in the application's assigned directory.
 SOAPGroup[] SecurityServerClientImpl.searchGroups(SearchRestriction[] searchRestrictions)
          Searches for groups that are in the application's assigned directory.
 SOAPPrincipal[] SecurityServerClient.searchPrincipals(SearchRestriction[] searchRestrictions)
          Searches for prnicipals that are in the application's assigned directory.
 SOAPPrincipal[] SecurityServerClientImpl.searchPrincipals(SearchRestriction[] searchRestrictions)
          Searches for prnicipals that are in the application's assigned directory.
 SOAPRole[] SecurityServerClient.searchRoles(SearchRestriction[] searchRestrictions)
          Searches for roles that are in the application's assigned directory.
 SOAPRole[] SecurityServerClientImpl.searchRoles(SearchRestriction[] searchRestrictions)
          Searches for roles that are in the application's assigned directory.
 void SecurityServerClient.updateGroup(String group, 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.updateGroup(String group, 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 SecurityServerClient.updatePrincipalAttribute(String name, SOAPAttribute attribute)
          Updates an attribute for a principal who is in the application's assigned directory..
 void SecurityServerClientImpl.updatePrincipalAttribute(String name, SOAPAttribute attribute)
          Updates an attribute for a principal who is in the application's assigned directory..
 void SecurityServerClient.updatePrincipalCredential(String principal, PasswordCredential credential)
          Updates the password credential for a principal who is in the application's assigned directory.
 void SecurityServerClientImpl.updatePrincipalCredential(String principal, PasswordCredential credential)
          Updates the password credential for a principal who is in the application's assigned directory.
 

Uses of InvalidAuthorizationTokenException in com.atlassian.crowd.integration.service.soap.server
 

Methods in com.atlassian.crowd.integration.service.soap.server that throw InvalidAuthorizationTokenException
 void SecurityServer.addAttributeToPrincipal(AuthenticatedToken applicationToken, String principal, SOAPAttribute attribute)
          Adds an attribute to a principal who is in the application's assigned directory.
 SOAPGroup SecurityServer.addGroup(AuthenticatedToken applicationToken, SOAPGroup group)
          Adds a group to the application's assigned directory.
 SOAPPrincipal SecurityServer.addPrincipal(AuthenticatedToken applicationToken, SOAPPrincipal principal, PasswordCredential credential)
          Adds a principal to the application's assigned directory.
 void SecurityServer.addPrincipalToGroup(AuthenticatedToken applicationToken, String principal, String group)
          Adds a principal to a group for the application's assigned directory.
 void SecurityServer.addPrincipalToRole(AuthenticatedToken applicationToken, String principal, String role)
          Adds the principal to a role for the application's assigned directory.
 SOAPRole SecurityServer.addRole(AuthenticatedToken applicationToken, SOAPRole role)
          Adds a role to the application's assigned directory.
 AuthenticatedToken SecurityServer.authenticateApplication(ApplicationAuthenticationContext authenticationContext)
          Authenticates an application client to the Crowd security server.
 String SecurityServer.authenticatePrincipal(AuthenticatedToken applicationToken, PrincipalAuthenticationContext authenticateContext)
          Authenticates a principal verses the calling who is in the application's assigned directory.
 String SecurityServer.authenticatePrincipalSimple(AuthenticatedToken authenticationContext, String username, String password)
          Authentiates a principal without SSO details utilizing centralized authentication only.
 String SecurityServer.createPrincipalToken(AuthenticatedToken authenticationContext, String username, ValidationFactor[] validationFactors)
          Authenticates a principal without validating a password.
 String[] SecurityServer.findAllGroupNames(AuthenticatedToken applicationToken)
          Finds all of the groups who are visible in the application's assigned directory.
 SOAPNestableGroup[] SecurityServer.findAllGroupRelationships(AuthenticatedToken applicationToken)
          Finds all of the groups who are visible in the application's assigned directory.
 String[] SecurityServer.findAllPrincipalNames(AuthenticatedToken applicationToken)
          Finds all of the principals who are visable in the application's assigned directory.
 String[] SecurityServer.findAllRoleNames(AuthenticatedToken applicationToken)
          Finds all of the roles who are visable in the application's assigned directory.
 SOAPGroup SecurityServer.findGroupByName(AuthenticatedToken applicationToken, String name)
          Find a group by name for the application's assigned directory.
 String[] SecurityServer.findGroupMemberships(AuthenticatedToken applicationToken, String principalName)
          Finds all of the principals who are members of a group that is in the application's assigned directory.
 SOAPPrincipal SecurityServer.findPrincipalByName(AuthenticatedToken applicationToken, String name)
          Finds a principal by name who is in the application's assigned directory.
 SOAPPrincipal SecurityServer.findPrincipalByToken(AuthenticatedToken applicationToken, String key)
          Finds a principal by token.
 SOAPRole SecurityServer.findRoleByName(AuthenticatedToken applicationToken, String name)
          Finds a role by name for the application's assigned directory.
 String[] SecurityServer.findRoleMemberships(AuthenticatedToken applicationToken, String principalName)
          Finds all of the principals who are members of a role that is in the application's assigned directory.
 long SecurityServer.getCacheTime(AuthenticatedToken applicationToken)
          Deprecated. This method is now implemented by the crowd-ehache.xml configuration file.
 String SecurityServer.getDomain(AuthenticatedToken applicationToken)
          This will return the domain configured in Crowd or null if no domain has been set.
 void SecurityServer.invalidatePrincipalToken(AuthenticatedToken applicationToken, String token)
          Invalidates a token for all integrated applications.
 boolean SecurityServer.isCacheEnabled(AuthenticatedToken applicationToken)
          Checks if the client application should cache security information from the Crowd server.
 boolean SecurityServer.isGroupMember(AuthenticatedToken applicationToken, String group, String principal)
          Checks if a prinicipal is a member of a group for the application's assigned directory.
 boolean SecurityServer.isRoleMember(AuthenticatedToken applicationToken, String role, String principal)
          Checks if a principal is a member of a role for the application's assigned directory.
 boolean SecurityServer.isValidPrincipalToken(AuthenticatedToken applicationToken, String principalToken, ValidationFactor[] validationFactors)
          Checks if the principal's current token is still valid.
 void SecurityServer.removeAttributeFromPrincipal(AuthenticatedToken applicationToken, String principal, String attribute)
          Removes an attribute from a principal who is in the application's assigned directory.
 void SecurityServer.removeGroup(AuthenticatedToken applicationToken, String group)
          Removes a group from the applciation's assigned directory.
 void SecurityServer.removePrincipal(AuthenticatedToken applicationToken, String principal)
          Removes a principal from the application's assigned directory.
 void SecurityServer.removePrincipalFromGroup(AuthenticatedToken applicationToken, String principal, String group)
          Removes a principal from a group for the application's assigned directory.
 void SecurityServer.removePrincipalFromRole(AuthenticatedToken applicationToken, String principal, String role)
          Removes a principal from a role for the application's assigned directory.
 void SecurityServer.removeRole(AuthenticatedToken applicationToken, String role)
          Removes a role from the application's assigned directory.
 void SecurityServer.resetPrincipalCredential(AuthenticatedToken applicationToken, 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[] SecurityServer.searchGroups(AuthenticatedToken applicationToken, SearchRestriction[] searchRestrictions)
          Searches for groups that are in the application's assigned directory.
 SOAPPrincipal[] SecurityServer.searchPrincipals(AuthenticatedToken applicationToken, SearchRestriction[] searchRestrictions)
          Searches for prnicipals that are in the application's assigned directory.
 SOAPRole[] SecurityServer.searchRoles(AuthenticatedToken applicationToken, SearchRestriction[] searchRestrictions)
          Searches for roles that are in the application's assigned directory.
 void SecurityServer.updateGroup(AuthenticatedToken authenticatedToken, String group, 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 SecurityServer.updatePrincipalAttribute(AuthenticatedToken applicationToken, String name, SOAPAttribute attribute)
          Updates an attribute for a principal who is in the application's assigned directory..
 void SecurityServer.updatePrincipalCredential(AuthenticatedToken applicationToken, String principal, PasswordCredential credential)
          Updates the password credential for a principal who is in the application's assigned directory.
 



Copyright © 2007 Atlassian Software Systems. All Rights Reserved.