org.valkyriercp.security.LogoutEvent Maven / Gradle / Ivy
package org.valkyriercp.security;
import org.springframework.security.core.Authentication;
/**
* Event fired when a user logs out.
*
* The old Authentication
token (if any) is provided as the
* event source. If no existing Authentication
token is
* available, then {@link ClientSecurityEvent#NO_AUTHENTICATION} object will be used.
*
* @author Ben Alex
*/
public class LogoutEvent extends ClientSecurityEvent {
public LogoutEvent(Authentication authentication) {
super(authentication);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy