aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/juick/model/Entity.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/com/juick/model/Entity.java')
-rw-r--r--src/main/java/com/juick/model/Entity.java49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/main/java/com/juick/model/Entity.java b/src/main/java/com/juick/model/Entity.java
new file mode 100644
index 00000000..15a88a32
--- /dev/null
+++ b/src/main/java/com/juick/model/Entity.java
@@ -0,0 +1,49 @@
+package com.juick.model;
+
+public class Entity {
+ private String type;
+ private String url;
+ private String text;
+ private int start;
+ private int end;
+
+ public String getUrl() {
+ return url;
+ }
+
+ public void setUrl(String url) {
+ this.url = url;
+ }
+
+ public String getText() {
+ return text;
+ }
+
+ public void setText(String text) {
+ this.text = text;
+ }
+
+ public int getStart() {
+ return start;
+ }
+
+ public void setStart(int start) {
+ this.start = start;
+ }
+
+ public int getEnd() {
+ return end;
+ }
+
+ public void setEnd(int end) {
+ this.end = end;
+ }
+
+ public String getType() {
+ return type;
+ }
+
+ public void setType(String type) {
+ this.type = type;
+ }
+}