Update swagger.json and other updates.
[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.Map;
26
27 public class JSONCallbackResponse {
28
29         private String full_table;
30         private String keyspace;
31         private Map<String, String> changeValue;
32         private String operation;
33         private String table_name;
34         private String primary_key;
35         private Object miscObjects;
36         public String getFull_table() {
37                 return full_table;
38         }
39         public void setFull_table(String full_table) {
40                 this.full_table = full_table;
41         }
42         public String getKeyspace() {
43                 return keyspace;
44         }
45         public void setKeyspace(String keyspace) {
46                 this.keyspace = keyspace;
47         }
48         public String getOperation() {
49                 return operation;
50         }
51         public void setOperation(String operation) {
52                 this.operation = operation;
53         }
54         public String getTable_name() {
55                 return table_name;
56         }
57         public void setTable_name(String table_name) {
58                 this.table_name = table_name;
59         }
60         public String getPrimary_key() {
61                 return primary_key;
62         }
63         public void setPrimary_key(String primary_key) {
64                 this.primary_key = primary_key;
65         }
66         public Object getMiscObjects() {
67                 return miscObjects;
68         }
69         public void setMiscObjects(Object miscObjects) {
70                 this.miscObjects = miscObjects;
71         }
72         public void setChangeValue(Map<String, String> changeValue) {
73                 this.changeValue = changeValue;
74         }
75         public Map<String, String> getChangeValue() {
76                 return changeValue;
77         }
78         
79         
80 }