public class CacheAwareCrowdHttpAuthenticator extends Object implements CrowdHttpAuthenticator
Constructor and Description |
---|
CacheAwareCrowdHttpAuthenticator(CrowdHttpAuthenticator delegate,
AuthenticatorUserCache userCache) |
Modifier and Type | Method and Description |
---|---|
User |
authenticate(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
String username,
String password)
Authenticates the user based on provided credentials.
|
User |
authenticateWithoutValidatingPassword(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
String username)
Authenticates the user without validating password.
|
AuthenticationState |
checkAuthenticated(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Tests whether a request is authenticated via SSO.
|
String |
getToken(javax.servlet.http.HttpServletRequest request)
Retrieves the Crowd authentication token from the request.
|
User |
getUser(javax.servlet.http.HttpServletRequest request)
Attempts to retrieve the currently authenticated User from the request.
|
boolean |
isAuthenticated(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Deprecated.
|
void |
logout(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response)
Logs out the authenticated user.
|
public CacheAwareCrowdHttpAuthenticator(CrowdHttpAuthenticator delegate, AuthenticatorUserCache userCache)
public User getUser(javax.servlet.http.HttpServletRequest request) throws InvalidTokenException, InvalidAuthenticationException, ApplicationPermissionException, OperationFailedException
CrowdHttpAuthenticator
getUser
in interface CrowdHttpAuthenticator
request
- HTTP request, possibly containing a Crowd SSO cookie.User
or null
if the there is no authenticated user.InvalidTokenException
- if the token in the request is not valid.InvalidAuthenticationException
- if the application and password are not valid.ApplicationPermissionException
- if the application is not permitted to perform the requested operation on the server.OperationFailedException
- if the operation has failed for an unknown reason.public User authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, String username, String password) throws InvalidTokenException, ApplicationAccessDeniedException, InvalidAuthenticationException, ExpiredCredentialException, ApplicationPermissionException, InactiveAccountException, OperationFailedException
CrowdHttpAuthenticator
Validation factors (such as IP address) are extracted from the request.
If the user is successfully authenticated, the Crowd SSO token is placed in:
If the credentials fail authentication, any existing Crowd SSO token is removed from:
authenticate
in interface CrowdHttpAuthenticator
request
- request to set the Crowd SSO tokenresponse
- response to set the Crowd SSO token cookieusername
- username to authenticatepassword
- password of the userInvalidAuthenticationException
- if the application and password are not valid.ApplicationPermissionException
- if the application is not permitted to perform the requested operation on the server.OperationFailedException
- if the operation has failed for an unknown reason.InvalidTokenException
ApplicationAccessDeniedException
ExpiredCredentialException
InactiveAccountException
public User authenticateWithoutValidatingPassword(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, String username) throws InvalidAuthenticationException, OperationFailedException, InvalidTokenException, ApplicationAccessDeniedException, ApplicationPermissionException, InactiveAccountException
CrowdHttpAuthenticator
Validation factors (such as IP address) are extracted from the request.
If the user is successfully authenticated, the Crowd SSO token is placed in:
If authentication fails, any existing Crowd SSO token is removed from:
authenticateWithoutValidatingPassword
in interface CrowdHttpAuthenticator
request
- request to set the Crowd SSO tokenresponse
- response to set the Crowd SSO token cookieusername
- username to authenticateInvalidAuthenticationException
- if the application and password are not valid.OperationFailedException
- if the operation has failed for an unknown reason.ApplicationPermissionException
- if the application is not permitted to perform the requested operation on the server.InvalidTokenException
ApplicationAccessDeniedException
InactiveAccountException
@Deprecated public boolean isAuthenticated(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws OperationFailedException
CrowdHttpAuthenticator
isAuthenticated
in interface CrowdHttpAuthenticator
request
- HttpServletRequestresponse
- HttpServletResponsetrue
if and only if the request has been authenticated.OperationFailedException
- if the operation has failed for an unknown reason.public AuthenticationState checkAuthenticated(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws OperationFailedException
CrowdHttpAuthenticator
checkAuthenticated
in interface CrowdHttpAuthenticator
request
- HttpServletRequestresponse
- HttpServletResponseOperationFailedException
- if the operation has failed for an unknown reason.public void logout(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws InvalidAuthenticationException, ApplicationPermissionException, OperationFailedException
CrowdHttpAuthenticator
logout
in interface CrowdHttpAuthenticator
request
- request contains the Crowd SSO token to invalidate and hence log the user out.response
- response returns a request to remove the token cookie from the user browser.InvalidAuthenticationException
- if the application and password are not valid.ApplicationPermissionException
- if the application is not permitted to perform the requested operation on the server.OperationFailedException
- if the operation has failed for an unknown reason.public String getToken(javax.servlet.http.HttpServletRequest request)
CrowdHttpAuthenticator
getToken
in interface CrowdHttpAuthenticator
request
- request to look for the Crowd SSO token.Copyright © 2020 Atlassian. All rights reserved.