Class PasswordFlowAuthenticationManager
- java.lang.Object
-
- org.bremersee.security.authentication.PasswordFlowAuthenticationManager
-
- All Implemented Interfaces:
org.springframework.security.authentication.AuthenticationManager
,org.springframework.security.authentication.AuthenticationProvider
public class PasswordFlowAuthenticationManager extends Object implements org.springframework.security.authentication.AuthenticationManager, org.springframework.security.authentication.AuthenticationProvider
The password flow authentication manager.- Author:
- Christian Bremer
-
-
Constructor Summary
Constructors Constructor Description PasswordFlowAuthenticationManager(ClientCredentialsFlowProperties passwordFlowProperties, org.springframework.security.oauth2.jwt.JwtDecoder jwtDecoder, org.springframework.core.convert.converter.Converter<org.springframework.security.oauth2.jwt.Jwt,? extends org.springframework.security.authentication.AbstractAuthenticationToken> jwtAuthenticationConverter, AccessTokenRetriever<String> accessTokenRetriever)
Instantiates a new password flow authentication manager.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.security.core.Authentication
authenticate(org.springframework.security.core.Authentication authentication)
boolean
supports(Class<?> authentication)
-
-
-
Constructor Detail
-
PasswordFlowAuthenticationManager
public PasswordFlowAuthenticationManager(ClientCredentialsFlowProperties passwordFlowProperties, org.springframework.security.oauth2.jwt.JwtDecoder jwtDecoder, @Nullable org.springframework.core.convert.converter.Converter<org.springframework.security.oauth2.jwt.Jwt,? extends org.springframework.security.authentication.AbstractAuthenticationToken> jwtAuthenticationConverter, AccessTokenRetriever<String> accessTokenRetriever)
Instantiates a new password flow authentication manager.- Parameters:
passwordFlowProperties
- the password flow propertiesjwtDecoder
- the jwt decoderjwtAuthenticationConverter
- the jwt authentication converteraccessTokenRetriever
- the access token retriever
-
-
Method Detail
-
authenticate
public org.springframework.security.core.Authentication authenticate(org.springframework.security.core.Authentication authentication) throws org.springframework.security.core.AuthenticationException
- Specified by:
authenticate
in interfaceorg.springframework.security.authentication.AuthenticationManager
- Specified by:
authenticate
in interfaceorg.springframework.security.authentication.AuthenticationProvider
- Throws:
org.springframework.security.core.AuthenticationException
-
supports
public boolean supports(Class<?> authentication)
- Specified by:
supports
in interfaceorg.springframework.security.authentication.AuthenticationProvider
-
-