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

io.rocketbase.commons.event.LoginEvent Maven / Gradle / Ivy

There is a newer version: 4.4.1
Show newest version
package io.rocketbase.commons.event;

import io.rocketbase.commons.model.AppUserEntity;
import lombok.Getter;
import org.springframework.context.ApplicationEvent;

@Getter
public class LoginEvent extends ApplicationEvent {

    private AppUserEntity appUserEntity;

    public LoginEvent(Object source, AppUserEntity appUserEntity) {
        super(source);
        this.appUserEntity = appUserEntity;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy