blob: c96613ba7857a4c58222df71547a04048f530d16 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package com.juick.service.activities;
import com.juick.server.api.activity.model.activities.Follow;
import org.springframework.context.ApplicationEvent;
public class FollowEvent extends ApplicationEvent {
private Follow request;
/**
* Create a new ApplicationEvent.
*
* @param source the object on which the event initially occurred (never {@code null})
*/
public FollowEvent(Object source, Follow followRequest) {
super(source);
this.request = followRequest;
}
public Follow getRequest() {
return request;
}
}
|