All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.valkyriercp.security.LogoutEvent Maven / Gradle / Ivy

There is a newer version: 1.3
Show newest version
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