aboutsummaryrefslogtreecommitdiff
path: root/juick-core/src/main/java/com/juick/server/protocol/ProtocolReply.java
diff options
context:
space:
mode:
authorGravatar Alexander Alexeev2016-11-13 21:21:45 +0700
committerGravatar Alexander Alexeev2016-11-13 21:21:45 +0700
commit6ba7eb5fe1384ec87cdd0031d185a9b26512a016 (patch)
tree1448ba6c8dda4302e3ad847cb085d49b8b054867 /juick-core/src/main/java/com/juick/server/protocol/ProtocolReply.java
parentb75258ee5ed84510579050b5dba1edb904a09dfa (diff)
server core module
Diffstat (limited to 'juick-core/src/main/java/com/juick/server/protocol/ProtocolReply.java')
-rw-r--r--juick-core/src/main/java/com/juick/server/protocol/ProtocolReply.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/juick-core/src/main/java/com/juick/server/protocol/ProtocolReply.java b/juick-core/src/main/java/com/juick/server/protocol/ProtocolReply.java
deleted file mode 100644
index d9d36a5d..00000000
--- a/juick-core/src/main/java/com/juick/server/protocol/ProtocolReply.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package com.juick.server.protocol;
-
-import java.util.Optional;
-
-/**
- * Created by vitalyster on 08.04.2016.
- */
-public class ProtocolReply {
-
- private Optional<String> json;
- private String description;
-
- public ProtocolReply(String text, Optional<String> json) {
- this.description = text;
- this.json = json;
- }
- public String getDescription() {
- return description;
- }
- public Optional<String> getJson() {
- return json;
- }
-}