info.baseinsight.core.event.AppEvent Maven / Gradle / Ivy
The newest version!
package info.baseinsight.core.event;
import org.springframework.context.ApplicationEvent;
/**
* BASE EVENT
* 应用的事件
* 建议所有的系统事件都继承此类
*
*/
public class AppEvent extends ApplicationEvent{
private static final long serialVersionUID = 1L;
/**
* Create a new ApplicationEvent.
* @param source the object on which the event initially occurred (never {@code null})
*/
public AppEvent(Object source) {
super(source);
}
}