From 92ef8c32677be2aacec4e61d7e634cbc5dffc392 Mon Sep 17 00:00:00 2001 From: Sergey Beryozkin Date: Fri, 13 Sep 2024 13:40:09 +0100 Subject: [PATCH] Fix an OidcEndpoint typo in the OIDC doc --- .../main/asciidoc/security-oidc-code-flow-authentication.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/asciidoc/security-oidc-code-flow-authentication.adoc b/docs/src/main/asciidoc/security-oidc-code-flow-authentication.adoc index 5e64a01bbd8af..4d09c196d96f8 100644 --- a/docs/src/main/asciidoc/security-oidc-code-flow-authentication.adoc +++ b/docs/src/main/asciidoc/security-oidc-code-flow-authentication.adoc @@ -347,7 +347,7 @@ public class OidcTokenRequestCustomizer implements OidcRequestFilter { <1> Get `OidcConfigurationMetadata`, which contains all supported OIDC endpoint addresses. <2> Use `OidcConfigurationMetadata` to filter requests to the OIDC token endpoint only. -Alternatively, you can use `OidcRequestFilter.Endpoint` enum to apply this filter to the token endpoint requests only: +Alternatively, you can use an `@OidcEndpoint` annotation to apply this filter to the token endpoint requests only: [source,java] ----