Interface ReactiveJwtDecoderFactory<C>
- 
- Type Parameters:
- C- The type that provides contextual information used to create a specific- ReactiveJwtDecoder.
 - All Known Implementing Classes:
- ReactiveOidcIdTokenDecoderFactory
 - Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
 @FunctionalInterface public interface ReactiveJwtDecoderFactory<C>A factory forReactiveJwtDecoder(s). This factory should be supplied with a type that provides contextual information used to create a specificReactiveJwtDecoder.- Since:
- 5.2
- See Also:
- ReactiveJwtDecoder
 
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ReactiveJwtDecodercreateDecoder(C context)Creates aReactiveJwtDecoderusing the supplied "contextual" type.
 
- 
- 
- 
Method Detail- 
createDecoderReactiveJwtDecoder createDecoder(C context) Creates aReactiveJwtDecoderusing the supplied "contextual" type.- Parameters:
- context- the type that provides contextual information
- Returns:
- a ReactiveJwtDecoder
 
 
- 
 
-