Performance Improvements for Gizmo bulk API
[aai/gizmo.git] / src / main / java / org / onap / crud / dao / champ / ChampBulkOp.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.crud.dao.champ;
22
23 import java.util.HashMap;
24 import java.util.Map;
25
26 import com.google.gson.Gson;
27 import com.google.gson.GsonBuilder;
28
29 public class ChampBulkOp {
30   private static final Gson gson = new GsonBuilder().create();
31
32   private String operation;
33   private String id;
34   private String type;
35   private String label;
36   private String source;
37   private String target;
38   private Map<String, Object> properties;
39
40
41   public String toJson() {
42     return gson.toJson(this);
43   }
44
45   public static ChampBulkOp fromJson(String jsonString) {
46     return gson.fromJson(jsonString, ChampBulkOp.class);
47   }
48
49   public String getId() {
50     return id;
51   }
52
53   public void setId(String id) {
54     this.id = id;
55   }
56
57   public String getType() {
58     return type;
59   }
60
61   public void setType(String type) {
62     this.type = type;
63   }
64
65   public Map<String, Object> getProperties() {
66     return properties;
67   }
68
69   public Object getProperty(String key) {
70     return properties.get(key);
71   }
72
73   public void setProperties(Map<String, Object> properties) {
74     this.properties = properties;
75   }
76
77   public void setProperty(String key, String value) {
78     if (properties == null) {
79       properties = new HashMap<String,Object>();
80     }
81
82     properties.put(key, value);
83   }
84
85   public String getOperation() {
86     return operation;
87   }
88
89   public void setOperation(String operation) {
90     this.operation = operation;
91   }
92
93   public String getLabel() {
94     return label;
95   }
96
97   public void setLabel(String label) {
98     this.label = label;
99   }
100
101   public String getSource() {
102     return source;
103   }
104
105   public void setSource(String source) {
106     this.source = source;
107   }
108
109   public String getTarget() {
110     return target;
111   }
112
113   public void setTarget(String target) {
114     this.target = target;
115   }
116 }