From e1c4177cd8b0979b531f1b0e3c547b3e96860326 Mon Sep 17 00:00:00 2001 From: Josh Cummings Date: Mon, 4 Mar 2024 15:42:05 -0700 Subject: [PATCH] Fix ServerLogoutHandler Order in Docs Closes gh-14379 --- docs/modules/ROOT/pages/reactive/authentication/logout.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/reactive/authentication/logout.adoc b/docs/modules/ROOT/pages/reactive/authentication/logout.adoc index 60d27138b1..376f90d7ff 100644 --- a/docs/modules/ROOT/pages/reactive/authentication/logout.adoc +++ b/docs/modules/ROOT/pages/reactive/authentication/logout.adoc @@ -20,7 +20,7 @@ Java:: @Bean SecurityWebFilterChain http(ServerHttpSecurity http) throws Exception { DelegatingServerLogoutHandler logoutHandler = new DelegatingServerLogoutHandler( - new WebSessionServerLogoutHandler(), new SecurityContextServerLogoutHandler() + new SecurityContextServerLogoutHandler(), new WebSessionServerLogoutHandler() ); http @@ -38,7 +38,7 @@ Kotlin:: @Bean fun http(http: ServerHttpSecurity): SecurityWebFilterChain { val customLogoutHandler = DelegatingServerLogoutHandler( - WebSessionServerLogoutHandler(), SecurityContextServerLogoutHandler() + SecurityContextServerLogoutHandler(), WebSessionServerLogoutHandler() ) return http {