Class ReactiveJwtAuthenticationConverter
java.lang.Object
org.springframework.security.oauth2.server.resource.authentication.ReactiveJwtAuthenticationConverter
- All Implemented Interfaces:
org.springframework.core.convert.converter.Converter<Jwt,
reactor.core.publisher.Mono<AbstractAuthenticationToken>>
public final class ReactiveJwtAuthenticationConverter
extends Object
implements org.springframework.core.convert.converter.Converter<Jwt,reactor.core.publisher.Mono<AbstractAuthenticationToken>>
Reactive version of
JwtAuthenticationConverter
for converting a Jwt
to
a Mono<AbstractAuthenticationToken>
.- Since:
- 5.2
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<AbstractAuthenticationToken>
void
setJwtGrantedAuthoritiesConverter
(org.springframework.core.convert.converter.Converter<Jwt, reactor.core.publisher.Flux<GrantedAuthority>> jwtGrantedAuthoritiesConverter) Sets theConverter<Jwt, Flux<GrantedAuthority>>
to use.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.core.convert.converter.Converter
andThen
-
Constructor Details
-
ReactiveJwtAuthenticationConverter
public ReactiveJwtAuthenticationConverter()
-
-
Method Details
-
convert
- Specified by:
convert
in interfaceorg.springframework.core.convert.converter.Converter<Jwt,
reactor.core.publisher.Mono<AbstractAuthenticationToken>>
-
setJwtGrantedAuthoritiesConverter
public void setJwtGrantedAuthoritiesConverter(org.springframework.core.convert.converter.Converter<Jwt, reactor.core.publisher.Flux<GrantedAuthority>> jwtGrantedAuthoritiesConverter) Sets theConverter<Jwt, Flux<GrantedAuthority>>
to use. Defaults to a reactiveJwtGrantedAuthoritiesConverter
.- Parameters:
jwtGrantedAuthoritiesConverter
- The converter- See Also:
-