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

com.anji.plus.gaea.security.event.UserLogoutEvent Maven / Gradle / Ivy

package com.anji.plus.gaea.security.event;

import org.springframework.context.ApplicationEvent;

/**
 * 登出事件
 * @author lr
 * @since 2021-01-25
 */
public class UserLogoutEvent extends ApplicationEvent {


    private String username;

    public UserLogoutEvent(String username) {
        super(username);
        this.username = username;
    }

    public String getUsername() {
        return username;
    }

    public void setUsername(String username) {
        this.username = username;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy