Adding back-end support for UI filters
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / search / filters / entity / UiFilterValueEntity.java
index a0bbd90..f2a238a 100644 (file)
@@ -26,8 +26,9 @@ import com.fasterxml.jackson.annotation.JsonInclude;
 import com.fasterxml.jackson.annotation.JsonInclude.Include;
 
 /**
- * This class represents a single item or value to populate the FE filter component with.
- * A drop-down list, for example, may be populated with the values from several instances of this class.
+ * This class represents a single item or value to populate the FE filter component with. A
+ * drop-down list, for example, may be populated with the values from several instances of this
+ * class.
  */
 @JsonInclude(Include.NON_NULL)
 public class UiFilterValueEntity {
@@ -73,6 +74,6 @@ public class UiFilterValueEntity {
         + (filterValue != null ? "filterValue=" + filterValue + ", " : "")
         + (displayName != null ? "displayName=" + displayName : "") + "]";
   }
-  
-  
+
+
 }