changed the header license to new license
[aai/sparky-be.git] / src / main / java / org / onap / aai / sparky / search / filters / config / UiFilterDataSourceConfig.java
index 6826dff..7df4ccd 100644 (file)
@@ -2,8 +2,8 @@
  * ============LICENSE_START=======================================================
  * org.onap.aai
  * ================================================================================
- * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
- * Copyright © 2017 Amdocs
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 Amdocs
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * See the License for the specific language governing permissions and
  * limitations under the License.
  * ============LICENSE_END=========================================================
- *
- * ECOMP is a trademark and service mark of AT&T Intellectual Property.
  */
 package org.onap.aai.sparky.search.filters.config;
 
-import com.att.aft.dme2.internal.jackson.annotate.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonCreator;
 import com.fasterxml.jackson.annotation.JsonInclude;
 import com.fasterxml.jackson.annotation.JsonInclude.Include;
 import com.fasterxml.jackson.annotation.JsonProperty;
 
 @JsonInclude(Include.NON_NULL)
 public class UiFilterDataSourceConfig {
-
   @JsonProperty("indexName")
   private String indexName;
-
+  
   @JsonProperty("docType")
   private String docType;
-
+  
   @JsonProperty("fieldName")
   private String fieldName;
-
+  
   @JsonProperty("pathToField")
   private String pathToField;
-
-  public UiFilterDataSourceConfig() {}
-
+  public UiFilterDataSourceConfig(){}
+  
   @JsonCreator
-  public UiFilterDataSourceConfig(@JsonProperty("indexName") final String indexName,
-      @JsonProperty("docType") final String docType,
-      @JsonProperty("fieldName") final String fieldName,
-      @JsonProperty("pathToField") final String pathToField) {
+  public UiFilterDataSourceConfig(@JsonProperty("indexName") final String indexName, @JsonProperty("docType") final String docType, @JsonProperty("fieldName") final String fieldName, @JsonProperty("pathToField") final String pathToField) {
     this.indexName = indexName;
     this.docType = docType;
     this.fieldName = fieldName;
@@ -81,12 +76,12 @@ public class UiFilterDataSourceConfig {
   public void setFieldName(String fieldName) {
     this.fieldName = fieldName;
   }
-
+  
   @JsonProperty("pathToField")
   public String getPathToField() {
     return pathToField;
   }
-
+  
   public void setPathToField(String pathToField) {
     this.pathToField = pathToField;
   }