Package com.aquima.web.boot.security.jwt
Class BlueriqJwtAuthenticationProviderFactory
java.lang.Object
com.aquima.web.boot.security.jwt.BlueriqJwtAuthenticationProviderFactory
Creates an JWT AuthenticationProvider that can handle JWT authentication tokens.
- Since:
- 15.8
- Author:
- Raoul de Haard
-
Method Summary
Modifier and TypeMethodDescriptionstatic org.springframework.security.authentication.AuthenticationProvider
create
(org.springframework.security.config.annotation.ObjectPostProcessor<Object> objectPostProcessor, org.springframework.security.oauth2.jwt.JwtDecoder jwtDecoder, JwtClaimMapper jwtClaimMapper) Create a new BlueriqJwtAuthenticationProvider based on provided jwtDecoder
-
Method Details
-
create
public static org.springframework.security.authentication.AuthenticationProvider create(org.springframework.security.config.annotation.ObjectPostProcessor<Object> objectPostProcessor, org.springframework.security.oauth2.jwt.JwtDecoder jwtDecoder, JwtClaimMapper jwtClaimMapper) Create a new BlueriqJwtAuthenticationProvider based on provided jwtDecoder- Parameters:
objectPostProcessor
- Spring ObjectPostProcessor used to properly initialize Spring beans programmaticallyjwtDecoder
- to use for decoding the jwt tokenjwtClaimMapper
- for mapping claims as configured in configuration properties- Returns:
- A new AuthenticationProvider for handling the JwtAuthentication token
-