Adding back-end support for UI filters
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / search / SearchEntityProperties.java
index c65811e..56e8fdd 100644 (file)
@@ -28,19 +28,19 @@ import java.util.Map;
 public class SearchEntityProperties {
   private String type;
   private Map<String, String> fields = new HashMap<>();
-  
+
   public String getType() {
     return type;
   }
-  
+
   public Map<String, String> getFields() {
     return fields;
   }
-  
+
   public void setType(String type) {
     this.type = type;
   }
-  
+
   public void setFields(Map<String, String> field) {
     this.fields = field;
   }