-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6fdc07c
commit 5c5f74c
Showing
3 changed files
with
70 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/main/java/com/tukorea/planding/domain/schedule/service/GroupScheduleCreatedEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.tukorea.planding.domain.schedule.service; | ||
|
||
import lombok.Getter; | ||
import org.springframework.context.ApplicationEvent; | ||
|
||
@Getter | ||
public class GroupScheduleCreatedEvent extends ApplicationEvent { | ||
private final String userCode; | ||
private final String groupName; | ||
private final String scheduleTitle; | ||
private final String url; | ||
|
||
public GroupScheduleCreatedEvent(Object source, String userCode, String groupName, String scheduleTitle, String url) { | ||
super(source); | ||
this.userCode = userCode; | ||
this.groupName = groupName; | ||
this.scheduleTitle = scheduleTitle; | ||
this.url = url; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters