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

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

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

import org.springframework.context.ApplicationEvent;

/**
 * 用户锁定事件
 * @author lr
 * @since 2021-02-01
 */
public class UserApplicationEvent extends ApplicationEvent {

    /**
     * 用户名
     */
    private String username;

    /**
     * 事件枚举
     */
    private EventEnum eventEnum;

    public UserApplicationEvent(String username, EventEnum eventEnum) {
        super(username);
        this.username = username;
        this.eventEnum = eventEnum;
    }

    public String getUsername() {
        return username;
    }


    public EventEnum getEventEnum() {
        return eventEnum;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy