Skip to content

Commit 6df9ef5

Browse files
sonalluxjzheaux
authored andcommitted
Fix wrong class name in JavaDoc
In the `ServerWebExchangeDelegatingReactiveAuthenticationManagerResolver.Builder` class the JavaDoc comments mention the wrong class name. This commit fixes this.
1 parent 1e90bdf commit 6df9ef5

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

web/src/main/java/org/springframework/security/web/server/authentication/ServerWebExchangeDelegatingReactiveAuthenticationManagerResolver.java

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors.
2+
* Copyright 2002-2024 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -27,7 +27,6 @@
2727
import org.springframework.security.authentication.ReactiveAuthenticationManager;
2828
import org.springframework.security.authentication.ReactiveAuthenticationManagerResolver;
2929
import org.springframework.security.web.access.intercept.RequestMatcherDelegatingAuthorizationManager;
30-
import org.springframework.security.web.authentication.RequestMatcherDelegatingAuthenticationManagerResolver;
3130
import org.springframework.security.web.server.util.matcher.ServerWebExchangeMatcher;
3231
import org.springframework.security.web.server.util.matcher.ServerWebExchangeMatcherEntry;
3332
import org.springframework.util.Assert;
@@ -112,7 +111,8 @@ private Mono<Boolean> isMatch(ServerWebExchange exchange,
112111
}
113112

114113
/**
115-
* A builder for {@link RequestMatcherDelegatingAuthenticationManagerResolver}.
114+
* A builder for
115+
* {@link ServerWebExchangeDelegatingReactiveAuthenticationManagerResolver}.
116116
*/
117117
public static final class Builder {
118118

@@ -128,8 +128,8 @@ private Builder() {
128128
* @param matcher the {@link ServerWebExchangeMatcher} to use
129129
* @param manager the {@link ReactiveAuthenticationManager} to use
130130
* @return the
131-
* {@link RequestMatcherDelegatingAuthenticationManagerResolver.Builder} for
132-
* further customizations
131+
* {@link ServerWebExchangeDelegatingReactiveAuthenticationManagerResolver.Builder}
132+
* for further customizations
133133
*/
134134
public ServerWebExchangeDelegatingReactiveAuthenticationManagerResolver.Builder add(
135135
ServerWebExchangeMatcher matcher, ReactiveAuthenticationManager manager) {
@@ -140,9 +140,11 @@ public ServerWebExchangeDelegatingReactiveAuthenticationManagerResolver.Builder
140140
}
141141

142142
/**
143-
* Creates a {@link RequestMatcherDelegatingAuthenticationManagerResolver}
143+
* Creates a
144+
* {@link ServerWebExchangeDelegatingReactiveAuthenticationManagerResolver}
144145
* instance.
145-
* @return the {@link RequestMatcherDelegatingAuthenticationManagerResolver}
146+
* @return the
147+
* {@link ServerWebExchangeDelegatingReactiveAuthenticationManagerResolver}
146148
* instance
147149
*/
148150
public ServerWebExchangeDelegatingReactiveAuthenticationManagerResolver build() {

0 commit comments

Comments
 (0)