a2974fdbd81689caac2dbd190bb324870d78f6b7
[policy/models.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.tosca.simple.serialization;
23
24 import com.google.gson.JsonDeserializationContext;
25 import com.google.gson.JsonDeserializer;
26 import com.google.gson.JsonElement;
27 import com.google.gson.JsonObject;
28 import com.google.gson.JsonSerializationContext;
29 import com.google.gson.JsonSerializer;
30
31 import java.lang.reflect.Type;
32
33 import lombok.NonNull;
34
35 import org.onap.policy.models.base.PfConceptKey;
36 import org.onap.policy.models.base.PfReferenceKey;
37 import org.onap.policy.models.tosca.simple.concepts.ToscaPolicies;
38 import org.onap.policy.models.tosca.simple.concepts.ToscaTopologyTemplate;
39
40 /**
41  * GSON type adapter for TOSCA policies.
42  *
43  * @author Liam Fallon (liam.fallon@est.tech)
44  * @author Chenfei Gao (cgao@research.att.com)
45  */
46 public class ToscaTopologyTemplateJsonAdapter
47         implements JsonSerializer<ToscaTopologyTemplate>, JsonDeserializer<ToscaTopologyTemplate> {
48
49     private static final String POLICIES = "policies";
50
51     @Override
52     public ToscaTopologyTemplate deserialize(@NonNull final JsonElement toplogyTemplateElement,
53             @NonNull final Type type, @NonNull final JsonDeserializationContext context) {
54
55         // The incoming JSON
56         final JsonObject topologyTemplateJsonObject = toplogyTemplateElement.getAsJsonObject();
57
58         // The outgoing object
59         final PfReferenceKey topologyTemplateKey = new PfReferenceKey(new PfConceptKey(), "IncomingTopologyTemplate");
60         final ToscaTopologyTemplate topologyTemplate = new ToscaTopologyTemplate(topologyTemplateKey);
61
62         if (topologyTemplateJsonObject.has(POLICIES)) {
63             topologyTemplate.setPolicies(new ToscaPoliciesJsonAdapter()
64                     .deserialize(topologyTemplateJsonObject.get(POLICIES), ToscaPolicies.class, context));
65         }
66
67         return topologyTemplate;
68     }
69
70     @Override
71     public JsonElement serialize(@NonNull final ToscaTopologyTemplate topologyTemplate, @NonNull final Type type,
72             @NonNull final JsonSerializationContext context) {
73
74         JsonObject topologyTemplateJsonObject = new JsonObject();
75         JsonElement policiesJsonElement = new ToscaPoliciesJsonAdapter()
76                 .serialize(topologyTemplate.getPolicies(), type, context);
77
78         topologyTemplateJsonObject.add(POLICIES, policiesJsonElement);
79         return topologyTemplateJsonObject;
80     }
81 }