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

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

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

import lombok.Getter;
import org.springframework.context.ApplicationEvent;

/**
 * will get trigged when amount of ActiveUserStore is changed
 */
@Getter
public class ActiveUserChangedEvent extends ApplicationEvent {

    public ActiveUserChangedEvent(Object source) {
        super(source);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy