From da7aa4771f0731d05d662393d6bb8b35ed1408d1 Mon Sep 17 00:00:00 2001 From: Marco Bungart Date: Fri, 6 Jan 2023 01:45:10 +0000 Subject: [PATCH] Clarified class names of filters (cherry picked from commit a4136f3d9d0a32eb62a26aacdb3fe9fb604f8633) --- docs/src/main/asciidoc/security-openid-connect-client.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/security-openid-connect-client.adoc b/docs/src/main/asciidoc/security-openid-connect-client.adoc index 608ad5f4f3cb9..194345a6458bd 100644 --- a/docs/src/main/asciidoc/security-openid-connect-client.adoc +++ b/docs/src/main/asciidoc/security-openid-connect-client.adoc @@ -139,7 +139,7 @@ public class ProtectedResource { As you can see `ProtectedResource` returns a name from both `userName()` and `adminName()` methods. The name is extracted from the current `JsonWebToken`. -Next let's add a REST Client with `OpenID Connect Client Reactive Filter` and another REST Client with `OpenID Connect Token Propagation Filter`. `FrontendResource` will use these two clients to call `ProtectedResource`: +Next let's add a REST Client with `OidcClientRequestReactiveFilter` and another REST Client with `AccessTokenRequestReactiveFilter`. `FrontendResource` will use these two clients to call `ProtectedResource`: [source,java] ----