Uses of Interface
org.bremersee.security.authentication.AccessTokenRetriever
-
Packages that use AccessTokenRetriever Package Description org.bremersee.security.authentication org.bremersee.web.reactive.function.client -
-
Uses of AccessTokenRetriever in org.bremersee.security.authentication
Classes in org.bremersee.security.authentication that implement AccessTokenRetriever Modifier and Type Class Description class
RestTemplateAccessTokenRetriever
The rest template access token retriever.class
WebClientAccessTokenRetriever
A reactive implementation of theAccessTokenRetriever
.Methods in org.bremersee.security.authentication with parameters of type AccessTokenRetriever Modifier and Type Method Description static AccessTokenProvider<reactor.core.publisher.Mono<String>>
ReactiveAccessTokenProviders. withAccessTokenRetriever(AccessTokenRetriever<reactor.core.publisher.Mono<String>> retriever, AccessTokenRetrieverProperties properties)
Provider that retrieves the access token from an OpenId server.Constructors in org.bremersee.security.authentication with parameters of type AccessTokenRetriever 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.PasswordFlowReactiveAuthenticationManager(ClientCredentialsFlowProperties passwordFlowProperties, org.springframework.security.oauth2.jwt.ReactiveJwtDecoder jwtDecoder, org.springframework.core.convert.converter.Converter<org.springframework.security.oauth2.jwt.Jwt,? extends reactor.core.publisher.Mono<? extends org.springframework.security.authentication.AbstractAuthenticationToken>> jwtConverter, AccessTokenRetriever<reactor.core.publisher.Mono<String>> retriever)
Instantiates a new password flow reactive authentication manager. -
Uses of AccessTokenRetriever in org.bremersee.web.reactive.function.client
Methods in org.bremersee.web.reactive.function.client with parameters of type AccessTokenRetriever Modifier and Type Method Description static AccessTokenAppender
AccessTokenAppender. withAccessTokenRetriever(AccessTokenRetriever<reactor.core.publisher.Mono<String>> retriever, AccessTokenRetrieverProperties properties)
With access token retriever access token appender.
-