d4ae0e4164fc09b0d5a641435ad82f71c6f8192d
[appc.git] / appc-config / appc-config-params / provider / src / main / java / org / onap / sdnc / config / params / data / ResponseKey.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.onap.sdnc.config.params.data;
26
27 import com.fasterxml.jackson.annotation.JsonProperty;
28
29 public class ResponseKey {
30     @JsonProperty("unique-key-name")
31     private String uniqueKeyName;
32     @JsonProperty("unique-key-value")
33     private String uniqueKeyValue;
34     @JsonProperty("field-key-name")
35     private String fieldKeyName;
36     @JsonProperty("filter-by-field")
37     private String filterByField;
38     @JsonProperty("filter-by-value")
39     private String filterByValue;
40
41     public String getUniqueKeyName() {
42         return uniqueKeyName;
43     }
44
45     public void setUniqueKeyName(String uniqueKeyName) {
46         this.uniqueKeyName = uniqueKeyName;
47     }
48
49     public String getUniqueKeyValue() {
50         return uniqueKeyValue;
51     }
52
53     public void setUniqueKeyValue(String uniqueKeyValue) {
54         this.uniqueKeyValue = uniqueKeyValue;
55     }
56
57     public String getFieldKeyName() {
58         return fieldKeyName;
59     }
60
61     public void setFieldKeyName(String fieldKeyName) {
62         this.fieldKeyName = fieldKeyName;
63     }
64
65     public String getFilterByField() {
66         return filterByField;
67     }
68
69     public void setFilterByField(String filterByField) {
70         this.filterByField = filterByField;
71     }
72
73     public String getFilterByValue() {
74         return filterByValue;
75     }
76
77     public void setFilterByValue(String filterByValue) {
78         this.filterByValue = filterByValue;
79     }
80 }