Adding back-end support for UI filters
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / suggestivesearch / SuggestionEntity.java
index 96511c1..92be827 100644 (file)
@@ -27,30 +27,34 @@ public class SuggestionEntity {
   private String hashId;\r
   private String text;\r
 \r
-  public SuggestionEntity() {\r
-  }\r
-  \r
+  public SuggestionEntity() {}\r
+\r
   public SuggestionEntity(String route, String hashId, String text) {\r
     this.route = route;\r
     this.hashId = hashId;\r
     this.text = text;\r
   }\r
-  \r
+\r
   public String getRoute() {\r
     return route;\r
   }\r
+\r
   public void setRoute(String route) {\r
     this.route = route;\r
   }\r
+\r
   public String getHashId() {\r
     return hashId;\r
   }\r
+\r
   public void setHashId(String hashId) {\r
     this.hashId = hashId;\r
   }\r
+\r
   public String getText() {\r
     return text;\r
   }\r
+\r
   public void setText(String text) {\r
     this.text = text;\r
   }\r