Fixed various broken links in Javadocs
This commit is contained in:
parent
a188138715
commit
04b47c5928
|
@ -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
|
* If set to true, a subtree scope search will be performed for group membership. If
|
||||||
* false a single-level search is used.
|
* false a single-level search is used.
|
||||||
* @param searchSubtree set to true to enable searching of the entire tree below the
|
* @param groupSearchSubtree set to true to enable searching of the entire tree below
|
||||||
* <tt>groupSearchBase</tt>.
|
* the <tt>groupSearchBase</tt>.
|
||||||
* @return the {@link LdapAuthenticationProviderConfigurer} for further customizations
|
* @return the {@link LdapAuthenticationProviderConfigurer} for further customizations
|
||||||
*/
|
*/
|
||||||
public LdapAuthenticationProviderConfigurer<B> groupSearchSubtree(boolean groupSearchSubtree) {
|
public LdapAuthenticationProviderConfigurer<B> groupSearchSubtree(boolean groupSearchSubtree) {
|
||||||
|
|
|
@ -20,7 +20,8 @@ import org.springframework.http.MediaType;
|
||||||
import org.springframework.util.MimeType;
|
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
|
* @author Rob Winch
|
||||||
* @since 5.2
|
* @since 5.2
|
||||||
|
|
|
@ -60,7 +60,7 @@ public final class Saml2MetadataFilter extends OncePerRequestFilter {
|
||||||
* @param relyingPartyRegistrationResolver
|
* @param relyingPartyRegistrationResolver
|
||||||
* @param saml2MetadataResolver
|
* @param saml2MetadataResolver
|
||||||
* @deprecated Use
|
* @deprecated Use
|
||||||
* {@link Saml2MetadataFilter#Saml2MetadataFilter(RelyingPartyRegistrationResolver)}
|
* {@link Saml2MetadataFilter#Saml2MetadataFilter(RelyingPartyRegistrationResolver, Saml2MetadataResolver)}
|
||||||
* instead
|
* instead
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
@Deprecated
|
||||||
|
|
|
@ -62,7 +62,6 @@ import org.springframework.web.util.UriUtils;
|
||||||
* @author Josh Cummings
|
* @author Josh Cummings
|
||||||
* @since 5.6
|
* @since 5.6
|
||||||
* @see Saml2LogoutRequestValidator
|
* @see Saml2LogoutRequestValidator
|
||||||
* @see Saml2AssertingPartyInitiatedLogoutSuccessHandler
|
|
||||||
*/
|
*/
|
||||||
public final class Saml2LogoutRequestFilter extends OncePerRequestFilter {
|
public final class Saml2LogoutRequestFilter extends OncePerRequestFilter {
|
||||||
|
|
||||||
|
|
|
@ -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
|
* 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>
|
* {@link FilterChain} is continued. If it does create an {@link Authentication}...</li>
|
||||||
* <li>The {@link AuthenticationManager} specified in
|
* <li>The {@link AuthenticationManager} specified in
|
||||||
* {@link #GenericAuthenticationFilter(AuthenticationManager)} is used to perform
|
* {@link #AuthenticationFilter(AuthenticationManager, AuthenticationConverter)} is used
|
||||||
* authentication.</li>
|
* to perform authentication.</li>
|
||||||
* <li>The {@link AuthenticationManagerResolver} specified in
|
* <li>The {@link AuthenticationManagerResolver} specified in
|
||||||
* {@link #GenericAuthenticationFilter(AuthenticationManagerResolver)} is used to resolve
|
* {@link #AuthenticationFilter(AuthenticationManagerResolver, AuthenticationConverter)}
|
||||||
* the appropriate authentication manager from context to perform authentication.</li>
|
* is used to resolve the appropriate authentication manager from context to perform
|
||||||
|
* authentication.</li>
|
||||||
* <li>If authentication is successful, {@link AuthenticationSuccessHandler} is invoked
|
* <li>If authentication is successful, {@link AuthenticationSuccessHandler} is invoked
|
||||||
* and the authentication is set on {@link SecurityContextHolder}, else
|
* and the authentication is set on {@link SecurityContextHolder}, else
|
||||||
* {@link AuthenticationFailureHandler} is invoked</li>
|
* {@link AuthenticationFailureHandler} is invoked</li>
|
||||||
|
|
Loading…
Reference in New Issue