2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2019 Nordix Foundation.
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 * ============LICENSE_END=========================================================
19 package org.onap.policy.models.tosca.simple.serialization;
21 import com.google.gson.GsonBuilder;
23 import org.onap.policy.common.gson.GsonMessageBodyHandler;
24 import org.onap.policy.models.tosca.simple.concepts.ToscaDataType;
25 import org.onap.policy.models.tosca.simple.concepts.ToscaDataTypes;
26 import org.onap.policy.models.tosca.simple.concepts.ToscaPolicies;
27 import org.onap.policy.models.tosca.simple.concepts.ToscaPolicy;
28 import org.onap.policy.models.tosca.simple.concepts.ToscaPolicyType;
29 import org.onap.policy.models.tosca.simple.concepts.ToscaPolicyTypes;
30 import org.onap.policy.models.tosca.simple.concepts.ToscaServiceTemplate;
31 import org.onap.policy.models.tosca.simple.concepts.ToscaTopologyTemplate;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
36 * Provider used to serialize and deserialize TOSCA objects using GSON.
38 public class ToscaServiceTemplateMessageBodyHandler extends GsonMessageBodyHandler {
40 public static final Logger logger = LoggerFactory.getLogger(ToscaServiceTemplateMessageBodyHandler.class);
43 * Constructs the object.
45 public ToscaServiceTemplateMessageBodyHandler() {
46 this(new GsonBuilder());
48 logger.info("Using GSON with TOSCA for REST calls");
52 * Constructs the object.
54 * @param builder builder to use to create the gson object
56 public ToscaServiceTemplateMessageBodyHandler(final GsonBuilder builder) {
59 .registerTypeAdapter(ToscaServiceTemplate.class, new ToscaServiceTemplateJsonAdapter())
60 .registerTypeAdapter(ToscaTopologyTemplate.class, new ToscaTopologyTemplateJsonAdapter())
61 .registerTypeAdapter(ToscaPolicies.class, new ToscaPoliciesJsonAdapter())
62 .registerTypeAdapter(ToscaPolicy.class, new ToscaPolicyJsonAdapter())
63 .registerTypeAdapter(ToscaPolicyTypes.class, new ToscaPolicyTypesJsonAdapter())
64 .registerTypeAdapter(ToscaPolicyType.class, new ToscaPolicyTypeJsonAdapter())
65 .registerTypeAdapter(ToscaDataTypes.class, new ToscaDataTypesJsonAdapter())
66 .registerTypeAdapter(ToscaDataType.class, new ToscaDataTypeJsonAdapter())