From 055ec577377eb0d2dcba2d0e26249e19425a41be Mon Sep 17 00:00:00 2001 From: DingHao Date: Sun, 27 Oct 2024 16:04:40 +0800 Subject: [PATCH] Fix not exist class in WebFilterChainProxy java doc --- .../security/web/server/WebFilterChainProxy.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/web/src/main/java/org/springframework/security/web/server/WebFilterChainProxy.java b/web/src/main/java/org/springframework/security/web/server/WebFilterChainProxy.java index 39b7f0f403..8c37fa92d0 100644 --- a/web/src/main/java/org/springframework/security/web/server/WebFilterChainProxy.java +++ b/web/src/main/java/org/springframework/security/web/server/WebFilterChainProxy.java @@ -99,7 +99,7 @@ public class WebFilterChainProxy implements WebFilter { } /** - * Used to decorate the original {@link FilterChain} for each request + * Used to decorate the original {@link WebFilterChain} for each request * *

* By default, this decorates the filter chain with a {@link DefaultWebFilterChain} @@ -122,21 +122,21 @@ public class WebFilterChainProxy implements WebFilter { public interface WebFilterChainDecorator { /** - * Provide a new {@link FilterChain} that accounts for needed security + * Provide a new {@link WebFilterChain} that accounts for needed security * considerations when there are no security filters. - * @param original the original {@link FilterChain} - * @return a security-enabled {@link FilterChain} + * @param original the original {@link WebFilterChain} + * @return a security-enabled {@link WebFilterChain} */ default WebFilterChain decorate(WebFilterChain original) { return decorate(original, Collections.emptyList()); } /** - * Provide a new {@link FilterChain} that accounts for the provided filters as + * Provide a new {@link WebFilterChain} that accounts for the provided filters as * well as the original filter chain. - * @param original the original {@link FilterChain} + * @param original the original {@link WebFilterChain} * @param filters the security filters - * @return a security-enabled {@link FilterChain} that includes the provided + * @return a security-enabled {@link WebFilterChain} that includes the provided * filters */ WebFilterChain decorate(WebFilterChain original, List filters);