Class WebAuthnAuthenticationProvider
java.lang.Object
org.springframework.security.web.webauthn.authentication.WebAuthnAuthenticationProvider
- All Implemented Interfaces:
AuthenticationProvider
An
AuthenticationProvider
that uses WebAuthnRelyingPartyOperations
for
authentication using an WebAuthnAuthenticationRequestToken
. First
WebAuthnRelyingPartyOperations.authenticate(RelyingPartyAuthenticationRequest)
is invoked. The result is a username passed into UserDetailsService
. The
UserDetails
is used to create an Authentication
.- Since:
- 6.4
-
Constructor Summary
ConstructorDescriptionWebAuthnAuthenticationProvider
(WebAuthnRelyingPartyOperations relyingPartyOperations, UserDetailsService userDetailsService) Creates a new instance. -
Method Summary
Modifier and TypeMethodDescriptionauthenticate
(Authentication authentication) Performs authentication with the same contract asAuthenticationManager.authenticate(Authentication)
.boolean
Returnstrue
if thisAuthenticationProvider
supports the indicatedAuthentication
object.
-
Constructor Details
-
WebAuthnAuthenticationProvider
public WebAuthnAuthenticationProvider(WebAuthnRelyingPartyOperations relyingPartyOperations, UserDetailsService userDetailsService) Creates a new instance.- Parameters:
relyingPartyOperations
- theWebAuthnRelyingPartyOperations
to use. Cannot be null.userDetailsService
- theUserDetailsService
to use. Cannot be null.
-
-
Method Details
-
authenticate
Description copied from interface:AuthenticationProvider
Performs authentication with the same contract asAuthenticationManager.authenticate(Authentication)
.- Specified by:
authenticate
in interfaceAuthenticationProvider
- Parameters:
authentication
- the authentication request object.- Returns:
- a fully authenticated object including credentials. May return
null
if theAuthenticationProvider
is unable to support authentication of the passedAuthentication
object. In such a case, the nextAuthenticationProvider
that supports the presentedAuthentication
class will be tried. - Throws:
AuthenticationException
- if authentication fails.
-
supports
Description copied from interface:AuthenticationProvider
Returnstrue
if thisAuthenticationProvider
supports the indicatedAuthentication
object.Returning
true
does not guarantee anAuthenticationProvider
will be able to authenticate the presentedAuthentication
object. It simply indicates it can support closer evaluation of it. AnAuthenticationProvider
can still returnnull
from theAuthenticationProvider.authenticate(Authentication)
method to indicate anotherAuthenticationProvider
should be tried.Selection of an
AuthenticationProvider
capable of performing authentication is conducted at runtime theProviderManager
.- Specified by:
supports
in interfaceAuthenticationProvider
- Returns:
true
if the implementation can more closely evaluate theAuthentication
class presented
-