Merge "added test cases to JsonResponseTest.java"
[music.git] / src / main / java / org / onap / music / datastore / jsonobjects / JSONCallbackResponse.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
6  * ===================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  * 
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  * 
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.datastore.jsonobjects;
24
25 import java.util.List;
26 import java.util.Map;
27
28 public class JSONCallbackResponse {
29
30         private String fullTable;
31         private String keyspace;
32         private Map<String, String> changeValue;
33         private String operation;
34         private String tableName;
35         private String primaryKey;
36         private Object miscObjects;
37         private List<String> updateList;
38         
39         public String getFull_table() {
40                 return fullTable;
41         }
42         public void setFull_table(String fullTable) {
43                 this.fullTable = fullTable;
44         }
45         public String getKeyspace() {
46                 return keyspace;
47         }
48         public void setKeyspace(String keyspace) {
49                 this.keyspace = keyspace;
50         }
51         public String getOperation() {
52                 return operation;
53         }
54         public void setOperation(String operation) {
55                 this.operation = operation;
56         }
57         public String getTable_name() {
58                 return tableName;
59         }
60         public void setTable_name(String tableName) {
61                 this.tableName = tableName;
62         }
63         public String getPrimary_key() {
64                 return primaryKey;
65         }
66         public void setPrimary_key(String primaryKey) {
67                 this.primaryKey = primaryKey;
68         }
69         public Object getMiscObjects() {
70                 return miscObjects;
71         }
72         public void setMiscObjects(Object miscObjects) {
73                 this.miscObjects = miscObjects;
74         }
75         public void setChangeValue(Map<String, String> changeValue) {
76                 this.changeValue = changeValue;
77         }
78         public Map<String, String> getChangeValue() {
79                 return changeValue;
80         }
81         public List<String> getUpdateList() {
82                 return updateList;
83         }
84         public void setUpdateList(List<String> updateList) {
85                 this.updateList = updateList;
86         }
87         
88         
89 }