Skip to content

Commit 04b47c5

Browse files
Emkaseleftherias
authored andcommitted
Fixed various broken links in Javadocs
1 parent a188138 commit 04b47c5

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

config/src/main/java/org/springframework/security/config/annotation/authentication/configurers/ldap/LdapAuthenticationProviderConfigurer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,8 @@ public LdapAuthenticationProviderConfigurer<B> groupSearchBase(String groupSearc
315315
/**
316316
* If set to true, a subtree scope search will be performed for group membership. If
317317
* false a single-level search is used.
318-
* @param searchSubtree set to true to enable searching of the entire tree below the
319-
* <tt>groupSearchBase</tt>.
318+
* @param groupSearchSubtree set to true to enable searching of the entire tree below
319+
* the <tt>groupSearchBase</tt>.
320320
* @return the {@link LdapAuthenticationProviderConfigurer} for further customizations
321321
*/
322322
public LdapAuthenticationProviderConfigurer<B> groupSearchSubtree(boolean groupSearchSubtree) {

rsocket/src/main/java/org/springframework/security/rsocket/metadata/BearerTokenMetadata.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
import org.springframework.util.MimeType;
2121

2222
/**
23-
* Represents a bearer token that has been encoded into a {@link Payload#metadata()}.
23+
* Represents a bearer token that has been encoded into a
24+
* {@link io.rsocket.Payload#metadata() Payload#metadata()}.
2425
*
2526
* @author Rob Winch
2627
* @since 5.2

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/provider/service/web/Saml2MetadataFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public final class Saml2MetadataFilter extends OncePerRequestFilter {
6060
* @param relyingPartyRegistrationResolver
6161
* @param saml2MetadataResolver
6262
* @deprecated Use
63-
* {@link Saml2MetadataFilter#Saml2MetadataFilter(RelyingPartyRegistrationResolver)}
63+
* {@link Saml2MetadataFilter#Saml2MetadataFilter(RelyingPartyRegistrationResolver, Saml2MetadataResolver)}
6464
* instead
6565
*/
6666
@Deprecated

saml2/saml2-service-provider/src/main/java/org/springframework/security/saml2/provider/service/web/authentication/logout/Saml2LogoutRequestFilter.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@
6262
* @author Josh Cummings
6363
* @since 5.6
6464
* @see Saml2LogoutRequestValidator
65-
* @see Saml2AssertingPartyInitiatedLogoutSuccessHandler
6665
*/
6766
public final class Saml2LogoutRequestFilter extends OncePerRequestFilter {
6867

web/src/main/java/org/springframework/security/web/authentication/AuthenticationFilter.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,12 @@
4949
* is made. If the result is empty, then the filter does nothing more and the
5050
* {@link FilterChain} is continued. If it does create an {@link Authentication}...</li>
5151
* <li>The {@link AuthenticationManager} specified in
52-
* {@link #GenericAuthenticationFilter(AuthenticationManager)} is used to perform
53-
* authentication.</li>
52+
* {@link #AuthenticationFilter(AuthenticationManager, AuthenticationConverter)} is used
53+
* to perform authentication.</li>
5454
* <li>The {@link AuthenticationManagerResolver} specified in
55-
* {@link #GenericAuthenticationFilter(AuthenticationManagerResolver)} is used to resolve
56-
* the appropriate authentication manager from context to perform authentication.</li>
55+
* {@link #AuthenticationFilter(AuthenticationManagerResolver, AuthenticationConverter)}
56+
* is used to resolve the appropriate authentication manager from context to perform
57+
* authentication.</li>
5758
* <li>If authentication is successful, {@link AuthenticationSuccessHandler} is invoked
5859
* and the authentication is set on {@link SecurityContextHolder}, else
5960
* {@link AuthenticationFailureHandler} is invoked</li>

0 commit comments

Comments
 (0)