This would facilitate constructions like: ``` configure(ServerHttpSecurity http) { http. oauth2(). resourceServer() .jwt(); } @Bean ReactiveJwtDecoder jwtDecoder() { return new CustomJwtDecoder(); } ```