@@ -99,7 +99,7 @@ public void setExchangeRejectedHandler(ServerExchangeRejectedHandler exchangeRej
99
99
}
100
100
101
101
/**
102
- * Used to decorate the original {@link FilterChain } for each request
102
+ * Used to decorate the original {@link WebFilterChain } for each request
103
103
*
104
104
* <p>
105
105
* By default, this decorates the filter chain with a {@link DefaultWebFilterChain}
@@ -122,21 +122,21 @@ public void setFilterChainDecorator(WebFilterChainDecorator filterChainDecorator
122
122
public interface WebFilterChainDecorator {
123
123
124
124
/**
125
- * Provide a new {@link FilterChain } that accounts for needed security
125
+ * Provide a new {@link WebFilterChain } that accounts for needed security
126
126
* 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 }
129
129
*/
130
130
default WebFilterChain decorate (WebFilterChain original ) {
131
131
return decorate (original , Collections .emptyList ());
132
132
}
133
133
134
134
/**
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
136
136
* well as the original filter chain.
137
- * @param original the original {@link FilterChain }
137
+ * @param original the original {@link WebFilterChain }
138
138
* @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
140
140
* filters
141
141
*/
142
142
WebFilterChain decorate (WebFilterChain original , List <WebFilter > filters );
0 commit comments