Uses of Class
org.apache.hadoop.security.authentication.server.AuthenticationToken
Packages that use AuthenticationToken
Package
Description
Provides the server-side framework for authentication.
-
Uses of AuthenticationToken in org.apache.hadoop.security.authentication.server
Fields in org.apache.hadoop.security.authentication.server declared as AuthenticationTokenModifier and TypeFieldDescriptionstatic final AuthenticationTokenAuthenticationToken.ANONYMOUSConstant that identifies an anonymous request.Methods in org.apache.hadoop.security.authentication.server that return AuthenticationTokenModifier and TypeMethodDescriptionabstract AuthenticationTokenAltKerberosAuthenticationHandler.alternateAuthenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) Subclasses should implement this method to provide the custom authentication to be used for browsers.JWTRedirectAuthenticationHandler.alternateAuthenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) AltKerberosAuthenticationHandler.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) It enforces the the Kerberos SPNEGO authentication sequence returning anAuthenticationTokenonly after the Kerberos SPNEGO sequence has completed successfully (in the case of Java access) and only after the custom authentication implemented by the subclass in alternateAuthenticate has completed successfully (in the case of browser access).AuthenticationHandler.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) Performs an authentication step for the given HTTP client request.KerberosAuthenticationHandler.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) It enforces the the Kerberos SPNEGO authentication sequence returning anAuthenticationTokenonly after the Kerberos SPNEGO sequence has completed successfully.LdapAuthenticationHandler.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) MultiSchemeAuthenticationHandler.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) PseudoAuthenticationHandler.authenticate(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) Authenticates an HTTP client request.protected AuthenticationTokenAuthenticationFilter.getToken(javax.servlet.http.HttpServletRequest request) Returns theAuthenticationTokenfor the request.static AuthenticationTokenParses a string into an authentication token.Methods in org.apache.hadoop.security.authentication.server with parameters of type AuthenticationTokenModifier and TypeMethodDescriptionbooleanAuthenticationHandler.managementOperation(AuthenticationToken token, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) Performs an authentication management operation.booleanKerberosAuthenticationHandler.managementOperation(AuthenticationToken token, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) This is an empty implementation, it always returnsTRUE.booleanLdapAuthenticationHandler.managementOperation(AuthenticationToken token, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) booleanMultiSchemeAuthenticationHandler.managementOperation(AuthenticationToken token, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) booleanPseudoAuthenticationHandler.managementOperation(AuthenticationToken token, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) This is an empty implementation, it always returnsTRUE.protected booleanAuthenticationFilter.verifyTokenType(AuthenticationHandler handler, AuthenticationToken token) This method verifies if the specified token type matches one of the the token types supported by a specifiedAuthenticationHandler.