Fixed various broken links in Javadocs

This commit is contained in:
Emil Sierżęga 2021-10-13 22:54:29 +02:00 committed by Eleftheria Stein-Kousathana
parent a188138715
commit 04b47c5928
5 changed files with 10 additions and 9 deletions

View File

@ -315,8 +315,8 @@ public class LdapAuthenticationProviderConfigurer<B extends ProviderManagerBuild
/**
* If set to true, a subtree scope search will be performed for group membership. If
* false a single-level search is used.
* @param searchSubtree set to true to enable searching of the entire tree below the
* <tt>groupSearchBase</tt>.
* @param groupSearchSubtree set to true to enable searching of the entire tree below
* the <tt>groupSearchBase</tt>.
* @return the {@link LdapAuthenticationProviderConfigurer} for further customizations
*/
public LdapAuthenticationProviderConfigurer<B> groupSearchSubtree(boolean groupSearchSubtree) {

View File

@ -20,7 +20,8 @@ import org.springframework.http.MediaType;
import org.springframework.util.MimeType;
/**
* Represents a bearer token that has been encoded into a {@link Payload#metadata()}.
* Represents a bearer token that has been encoded into a
* {@link io.rsocket.Payload#metadata() Payload#metadata()}.
*
* @author Rob Winch
* @since 5.2

View File

@ -60,7 +60,7 @@ public final class Saml2MetadataFilter extends OncePerRequestFilter {
* @param relyingPartyRegistrationResolver
* @param saml2MetadataResolver
* @deprecated Use
* {@link Saml2MetadataFilter#Saml2MetadataFilter(RelyingPartyRegistrationResolver)}
* {@link Saml2MetadataFilter#Saml2MetadataFilter(RelyingPartyRegistrationResolver, Saml2MetadataResolver)}
* instead
*/
@Deprecated

View File

@ -62,7 +62,6 @@ import org.springframework.web.util.UriUtils;
* @author Josh Cummings
* @since 5.6
* @see Saml2LogoutRequestValidator
* @see Saml2AssertingPartyInitiatedLogoutSuccessHandler
*/
public final class Saml2LogoutRequestFilter extends OncePerRequestFilter {

View File

@ -49,11 +49,12 @@ import org.springframework.web.filter.OncePerRequestFilter;
* is made. If the result is empty, then the filter does nothing more and the
* {@link FilterChain} is continued. If it does create an {@link Authentication}...</li>
* <li>The {@link AuthenticationManager} specified in
* {@link #GenericAuthenticationFilter(AuthenticationManager)} is used to perform
* authentication.</li>
* {@link #AuthenticationFilter(AuthenticationManager, AuthenticationConverter)} is used
* to perform authentication.</li>
* <li>The {@link AuthenticationManagerResolver} specified in
* {@link #GenericAuthenticationFilter(AuthenticationManagerResolver)} is used to resolve
* the appropriate authentication manager from context to perform authentication.</li>
* {@link #AuthenticationFilter(AuthenticationManagerResolver, AuthenticationConverter)}
* is used to resolve the appropriate authentication manager from context to perform
* authentication.</li>
* <li>If authentication is successful, {@link AuthenticationSuccessHandler} is invoked
* and the authentication is set on {@link SecurityContextHolder}, else
* {@link AuthenticationFailureHandler} is invoked</li>