-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SEC-2680: Fire an event when logout has finished #2900
Labels
in: core
An issue in spring-security-core
type: enhancement
A general enhancement
type: jira
An issue that was migrated from JIRA
Milestone
Comments
spring-projects-issues
added
in: core
An issue in spring-security-core
Open
type: jira
An issue that was migrated from JIRA
labels
Feb 5, 2016
+1 on this one. |
1 task
This issue is same with #3307. |
@rwinch hello, is this issue still active? are there any plans to integrate this feature? |
Thanks for pointing out the duplicate. If you are able, we'd love for a PR to be submitted. |
okohub
added a commit
to okohub/spring-security
that referenced
this issue
Aug 23, 2019
LogoutSuccessEvent is a simple AbstractAuthenticationEvent implementation which indicates successful logout. By default, LogoutConfigurer will add a new LogoutHandler called LogoutSuccessEventPublishingLogoutHandler to publish this event. This PR will also fix ConcurrentSessionFilter's composite logoutHandler, now will get LogoutHandler instances from LogoutConfigurer for consistency. Fixes spring-projectsgh-2900
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
in: core
An issue in spring-security-core
type: enhancement
A general enhancement
type: jira
An issue that was migrated from JIRA
Marten Deinum (Migrated from SEC-2680) said:
During login several events can be fired like for instance
AuthenticationSuccessEvent
andAuthenticationFailureExpiredEvent
. It would be nice that on a logout (successful, session limit exceeded etc.) also an event would be fired.This would enable to create an
ApplicationListener
which logs the start/end of a user session.The text was updated successfully, but these errors were encountered: