Upversion artifacts to 1.8.0-SNAPSHOT
[aai/data-router.git] / src / main / java / org / onap / aai / datarouter / search / filters / config / UiFilterDataSourceConfig.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.datarouter.search.filters.config;
22
23 import com.fasterxml.jackson.annotation.JsonCreator;
24 import com.fasterxml.jackson.annotation.JsonInclude;
25 import com.fasterxml.jackson.annotation.JsonInclude.Include;
26 import com.fasterxml.jackson.annotation.JsonProperty;
27
28 @JsonInclude(Include.NON_NULL)
29 public class UiFilterDataSourceConfig {
30  
31   @JsonProperty("indexName")
32   private String indexName;
33   
34   @JsonProperty("docType")
35   private String docType;
36   
37   @JsonProperty("fieldName")
38   private String fieldName;
39   
40   @JsonProperty("pathToField")
41   private String pathToField;
42  
43   public UiFilterDataSourceConfig(){}
44   
45   @JsonCreator
46   public UiFilterDataSourceConfig(
47       @JsonProperty("indexName") final String indexName, @JsonProperty("docType") final String docType,
48       @JsonProperty("fieldName") final String fieldName, @JsonProperty("pathToField") final String pathToField) {
49     this.indexName = indexName;
50     this.docType = docType;
51     this.fieldName = fieldName;
52     this.pathToField = pathToField;
53   }
54
55   @JsonProperty("indexName")
56   public String getIndexName() {
57     return indexName;
58   }
59
60   public void setIndexName(String indexName) {
61     this.indexName = indexName;
62   }
63
64   @JsonProperty("docType")
65   public String getDocType() {
66     return docType;
67   }
68
69   public void setDocType(String docType) {
70     this.docType = docType;
71   }
72
73   @JsonProperty("fieldName")
74   public String getFieldName() {
75     return fieldName;
76   }
77
78   public void setFieldName(String fieldName) {
79     this.fieldName = fieldName;
80   }
81   
82   @JsonProperty("pathToField")
83   public String getPathToField() {
84     return pathToField;
85   }
86   
87   public void setPathToField(String pathToField) {
88     this.pathToField = pathToField;
89   }
90
91   @Override
92   public String toString() {
93     return "UiFilterDataSourceConfig [indexName=" + indexName + ", docType=" + docType
94         + ", fieldName=" + fieldName + ", pathToField=" + pathToField + "]";
95   }
96 }
97