Fix sonar issues
[aai/model-loader.git] / src / main / java / org / onap / aai / modelloader / gizmo / GizmoEdgeOperation.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 European Software Marketing Ltd.
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.modelloader.gizmo;
22
23 import com.google.gson.JsonElement;
24 import com.google.gson.JsonObject;
25 import com.google.gson.JsonParser;
26 import java.util.ArrayList;
27 import java.util.List;
28 import java.util.Map;
29
30 public class GizmoEdgeOperation {
31     private String operation;
32     private String internalId;
33     private GizmoEdge edge;
34
35     public GizmoEdgeOperation(String op, String id, GizmoEdge edge) {
36         this.operation = op;
37         this.internalId = id;
38         this.edge = edge;
39     }
40
41     public JsonElement toJsonElement() {
42         JsonObject opObj = new JsonObject();
43         JsonObject edgeObj = JsonParser.parseString(edge.toJson()).getAsJsonObject();
44
45         opObj.addProperty(GizmoBulkPayload.OP_KEY, operation);
46         opObj.add(internalId, edgeObj);
47
48         return opObj;
49     }
50
51     public static GizmoEdgeOperation fromJsonElement(JsonElement element) {
52         List<Map.Entry<String, JsonElement>> entries = new ArrayList<>(element.getAsJsonObject().entrySet());
53
54         String op = null;
55         String id = null;
56         GizmoEdge edge = null;
57
58         for (Map.Entry<String, JsonElement> entry : entries) {
59             if (entry.getKey().equalsIgnoreCase(GizmoBulkPayload.OP_KEY)) {
60                 op = entry.getValue().getAsString();
61             } else {
62                 id = entry.getKey();
63                 edge = GizmoEdge.fromJson(entry.getValue().getAsJsonObject().toString());
64             }
65         }
66
67         if (op == null) {
68             // Use default
69             op = GizmoBulkPayload.EXISTS_OP;
70         }
71
72         return new GizmoEdgeOperation(op, id, edge);
73     }
74
75     public String getOperation() {
76         return operation;
77     }
78
79     public String getInternalId() {
80         return internalId;
81     }
82
83     public GizmoEdge getEdge() {
84         return edge;
85     }
86 }