Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
/**
* Implementation of {@link AuthenticationProvider} for SAML authentications when
* receiving a {@code Response} object containing an {@code Assertion}. This
* implementation uses the {@code OpenSAML 4} library.
* implementation uses the {@code OpenSAML 5} library.
*
* <p>
* The {@link OpenSaml5AuthenticationProvider} supports {@link Saml2AuthenticationToken}
Expand Down Expand Up @@ -154,7 +154,7 @@ public void setResponseElementsDecrypter(Consumer<ResponseToken> responseElement
* {@link #createDefaultResponseValidator()}, like so:
*
* <pre>
* OpenSaml4AuthenticationProvider provider = new OpenSaml4AuthenticationProvider();
* OpenSaml5AuthenticationProvider provider = new OpenSaml5AuthenticationProvider();
* provider.setResponseValidator(responseToken -&gt; {
* Saml2ResponseValidatorResult result = createDefaultResponseValidator()
* .convert(responseToken)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
package org.springframework.security.saml2.provider.service.authentication.logout;

/**
* An OpenSAML 4.x compatible implementation of {@link Saml2LogoutResponseValidator}
* An OpenSAML 5.x compatible implementation of {@link Saml2LogoutResponseValidator}
*
* @author Josh Cummings
* @since 5.6
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

/**
* A {@link Saml2LogoutRequestResolver} for resolving SAML 2.0 Logout Requests with
* OpenSAML 4
* OpenSAML 5
*
* @author Josh Cummings
* @author Gerhard Haege
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

/**
* A {@link Saml2LogoutResponseResolver} for resolving SAML 2.0 Logout Responses with
* OpenSAML 4
* OpenSAML 5
*
* @author Josh Cummings
* @since 5.6
Expand Down