generated from digitalservicebund/java-application-template
-
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.
test checking status of message in transit
- Loading branch information
Showing
5 changed files
with
111 additions
and
21 deletions.
There are no files selected for viewing
4 changes: 4 additions & 0 deletions
4
src/main/java/de/bund/digitalservice/a2j/service/egvp/DTO/MessageDeliveryStatusResponse.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,4 @@ | ||
package de.bund.digitalservice.a2j.service.egvp.DTO; | ||
|
||
public record MessageDeliveryStatusResponse( | ||
String messageId, Boolean delivered, String pendingReason, String path) {} |
8 changes: 8 additions & 0 deletions
8
src/main/java/de/bund/digitalservice/a2j/service/egvp/DTO/SendMessageRequest.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,8 @@ | ||
package de.bund.digitalservice.a2j.service.egvp.DTO; | ||
|
||
public record SendMessageRequest( | ||
String receiverId, | ||
String bundIdMailbox, | ||
String subject, | ||
String attachmentFile, | ||
String xJustizFile) {} |
3 changes: 3 additions & 0 deletions
3
src/main/java/de/bund/digitalservice/a2j/service/egvp/DTO/SendMessageResponse.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,3 @@ | ||
package de.bund.digitalservice.a2j.service.egvp.DTO; | ||
|
||
public record SendMessageResponse(String customId) {} |
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