Skip to content

Commit 055ec57

Browse files
kse-musicjzheaux
authored andcommitted
Fix not exist class in WebFilterChainProxy java doc
1 parent f46e56d commit 055ec57

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

web/src/main/java/org/springframework/security/web/server/WebFilterChainProxy.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public void setExchangeRejectedHandler(ServerExchangeRejectedHandler exchangeRej
9999
}
100100

101101
/**
102-
* Used to decorate the original {@link FilterChain} for each request
102+
* Used to decorate the original {@link WebFilterChain} for each request
103103
*
104104
* <p>
105105
* By default, this decorates the filter chain with a {@link DefaultWebFilterChain}
@@ -122,21 +122,21 @@ public void setFilterChainDecorator(WebFilterChainDecorator filterChainDecorator
122122
public interface WebFilterChainDecorator {
123123

124124
/**
125-
* Provide a new {@link FilterChain} that accounts for needed security
125+
* Provide a new {@link WebFilterChain} that accounts for needed security
126126
* considerations when there are no security filters.
127-
* @param original the original {@link FilterChain}
128-
* @return a security-enabled {@link FilterChain}
127+
* @param original the original {@link WebFilterChain}
128+
* @return a security-enabled {@link WebFilterChain}
129129
*/
130130
default WebFilterChain decorate(WebFilterChain original) {
131131
return decorate(original, Collections.emptyList());
132132
}
133133

134134
/**
135-
* Provide a new {@link FilterChain} that accounts for the provided filters as
135+
* Provide a new {@link WebFilterChain} that accounts for the provided filters as
136136
* well as the original filter chain.
137-
* @param original the original {@link FilterChain}
137+
* @param original the original {@link WebFilterChain}
138138
* @param filters the security filters
139-
* @return a security-enabled {@link FilterChain} that includes the provided
139+
* @return a security-enabled {@link WebFilterChain} that includes the provided
140140
* filters
141141
*/
142142
WebFilterChain decorate(WebFilterChain original, List<WebFilter> filters);

0 commit comments

Comments
 (0)