mirror of
https://github.com/AsamK/signal-cli
synced 2025-08-30 11:00:38 +00:00
Implement jsonRpc command
Co-authored-by: technillogue <technillogue@gmail.com> Closes #668
This commit is contained in:
parent
6c00054407
commit
a8bbdb54d0
20 changed files with 863 additions and 31 deletions
|
@ -0,0 +1,18 @@
|
|||
package org.asamk.signal.jsonrpc;
|
||||
|
||||
import com.fasterxml.jackson.databind.JsonNode;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class JsonRpcBulkMessage extends JsonRpcMessage {
|
||||
|
||||
List<JsonNode> messages;
|
||||
|
||||
public JsonRpcBulkMessage(final List<JsonNode> messages) {
|
||||
this.messages = messages;
|
||||
}
|
||||
|
||||
public List<JsonNode> getMessages() {
|
||||
return messages;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue