Fix Typo in Oidc Logout Docs

Closes gh-15198
This commit is contained in:
Josh Cummings 2024-06-06 13:45:35 -06:00
parent f231ea277d
commit 0532659245
No known key found for this signature in database
GPG Key ID: A306A51F43B8E5A5
1 changed files with 4 additions and 4 deletions

View File

@ -179,8 +179,8 @@ Java::
[source=java,role="primary"]
----
@Bean
public HttpSessionEventListener sessionEventListener() {
return new HttpSessionEventListener();
public HttpSessionEventPublisher sessionEventPublisher() {
return new HttpSessionEventPublisher();
}
----
@ -189,8 +189,8 @@ Kotlin::
[source=kotlin,role="secondary"]
----
@Bean
open fun sessionEventListener(): HttpSessionEventListener {
return HttpSessionEventListener()
open fun sessionEventPublisher(): HttpSessionEventPublisher {
return HttpSessionEventPublisher()
}
----
======