blob: 552c3e6626f5647fc5dfbf4cfc54b655a45b24cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package com.juick.service.component;
import org.springframework.context.ApplicationEvent;
public class DisconnectedEvent extends ApplicationEvent {
/**
* Create a new ApplicationEvent.
*
* @param source the object on which the event initially occurred (never {@code null})
*/
public DisconnectedEvent(Object source) {
super(source);
}
}
|