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; } }