-
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
ba74d01
commit 456d8f6
Showing
8 changed files
with
115 additions
and
18 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
12 changes: 12 additions & 0 deletions
12
...o/io/urdego_notification_service/common/exception/notification/InvalidNotificationId.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,12 @@ | ||
package urdego.io.urdego_notification_service.common.exception.notification; | ||
|
||
import urdego.io.urdego_notification_service.common.exception.BaseException; | ||
import urdego.io.urdego_notification_service.common.exception.ExceptionMessage; | ||
|
||
public class InvalidNotificationId extends BaseException { | ||
public static final BaseException EXCEPTION = new InvalidNotificationId(); | ||
|
||
private InvalidNotificationId() { | ||
super(ExceptionMessage.INVALID_NOTIFICATION_ID); | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...go/io/urdego_notification_service/common/exception/notification/NotFoundNotification.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,12 @@ | ||
package urdego.io.urdego_notification_service.common.exception.notification; | ||
|
||
import urdego.io.urdego_notification_service.common.exception.BaseException; | ||
import urdego.io.urdego_notification_service.common.exception.ExceptionMessage; | ||
|
||
public class NotFoundNotification extends BaseException { | ||
public static final BaseException EXCEPTION = new NotFoundNotification(); | ||
|
||
private NotFoundNotification() { | ||
super(ExceptionMessage.NOT_FOUND_NOTIFICATION); | ||
} | ||
} |
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
9 changes: 9 additions & 0 deletions
9
src/main/java/urdego/io/urdego_notification_service/controller/dto/request/ReplyRequest.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,9 @@ | ||
package urdego.io.urdego_notification_service.controller.dto.request; | ||
|
||
import java.util.UUID; | ||
|
||
public record ReplyRequest( | ||
boolean isAccepted, | ||
String notificationId | ||
) { | ||
} |
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
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
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