Skip to content

Commit

Permalink
Fix JavaDoc Links
Browse files Browse the repository at this point in the history
  • Loading branch information
jzheaux committed Aug 8, 2024
1 parent c8b95eb commit 1f727a0
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
import org.springframework.security.authorization.ObservationReactiveAuthorizationManager;
import org.springframework.security.authorization.ReactiveAuthorizationManager;
import org.springframework.security.config.Customizer;
import org.springframework.security.config.annotation.web.configurers.oauth2.client.OidcLogoutConfigurer;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.AuthorityUtils;
Expand Down Expand Up @@ -5536,7 +5535,7 @@ private ServerLogoutHandler logoutHandler() {
* that the scheme, server name, or port in the {@code Host} header are
* different from how you would address the same server internally.
* @param logoutUri the URI to request logout on the back-channel
* @return the {@link OidcLogoutConfigurer.BackChannelLogoutConfigurer} for
* @return the {@link BackChannelLogoutConfigurer} for
* further customizations
* @since 6.2.4
* @deprecated Please use {@link #sessionLogout} instead
Expand Down Expand Up @@ -5610,7 +5609,7 @@ public BackChannelLogoutConfigurer logoutUri(String logoutUri) {
* </pre>
* @param sessionLogout a {@link Customizer} for configuring how to log out of
* each individual session
* @return {@link OidcLogoutConfigurer.BackChannelLogoutConfigurer} for
* @return {@link BackChannelLogoutConfigurer} for
* further customizations
* @since 6.4
*/
Expand Down Expand Up @@ -5697,7 +5696,7 @@ private SessionLogoutConfigurer() {
* {@code {baseScheme}://localhost{basePort}/logout}.
* @param uri the URI to invoke to log out specific sessions
* @return the
* {@link OidcLogoutConfigurer.BackChannelLogoutConfigurer.SessionLogoutConfigurer}
* {@link SessionLogoutConfigurer}
* for further customizations
*/
public SessionLogoutConfigurer uri(String uri) {
Expand All @@ -5716,7 +5715,7 @@ public SessionLogoutConfigurer uri(String uri) {
* When using Spring Session, you may need to set this to {@code SESSION}
* @param cookieName the cookie name to use
* @return the
* {@link OidcLogoutConfigurer.BackChannelLogoutConfigurer.SessionLogoutConfigurer}
* {@link SessionLogoutConfigurer}
* for further customizations
*/
public SessionLogoutConfigurer cookieName(String cookieName) {
Expand Down

0 comments on commit 1f727a0

Please sign in to comment.