-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #127 from Onlineberatung/feature_delete_message
Feature delete message
- Loading branch information
Showing
10 changed files
with
433 additions
and
11 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
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
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/de/caritas/cob/messageservice/api/service/dto/MethodCall.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 de.caritas.cob.messageservice.api.service.dto; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class MethodCall { | ||
|
||
private String message; | ||
} |
16 changes: 16 additions & 0 deletions
16
src/main/java/de/caritas/cob/messageservice/api/service/dto/MethodMessageWithParamList.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,16 @@ | ||
package de.caritas.cob.messageservice.api.service.dto; | ||
|
||
import java.util.List; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class MethodMessageWithParamList { | ||
|
||
private String msg = "method"; | ||
|
||
private int id; | ||
|
||
private String method; | ||
|
||
private List<String> params; | ||
} |
17 changes: 17 additions & 0 deletions
17
src/main/java/de/caritas/cob/messageservice/api/service/dto/MethodMessageWithParamMap.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,17 @@ | ||
package de.caritas.cob.messageservice.api.service.dto; | ||
|
||
import java.util.List; | ||
import java.util.Map; | ||
import lombok.Data; | ||
|
||
@Data | ||
public class MethodMessageWithParamMap { | ||
|
||
private String msg = "method"; | ||
|
||
private int id; | ||
|
||
private String method; | ||
|
||
private List<Map<String, String>> params; | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/de/caritas/cob/messageservice/api/service/dto/StringifiedMessageResponse.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,11 @@ | ||
package de.caritas.cob.messageservice.api.service.dto; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class StringifiedMessageResponse { | ||
|
||
private String message; | ||
|
||
private Boolean success; | ||
} |
Oops, something went wrong.