Merge "Restructure for authorative models"
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / simple / serialization / ToscaServiceTemplateMessageBodyHandler.java
1 /*-
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
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
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=========================================================
17  */
18
19 package org.onap.policy.models.tosca.simple.serialization;
20
21 import com.google.gson.GsonBuilder;
22
23 import org.onap.policy.common.gson.GsonMessageBodyHandler;
24 import org.onap.policy.models.tosca.simple.concepts.JpaToscaDataType;
25 import org.onap.policy.models.tosca.simple.concepts.JpaToscaDataTypes;
26 import org.onap.policy.models.tosca.simple.concepts.JpaToscaPolicies;
27 import org.onap.policy.models.tosca.simple.concepts.JpaToscaPolicy;
28 import org.onap.policy.models.tosca.simple.concepts.JpaToscaPolicyType;
29 import org.onap.policy.models.tosca.simple.concepts.JpaToscaPolicyTypes;
30 import org.onap.policy.models.tosca.simple.concepts.JpaToscaServiceTemplate;
31 import org.onap.policy.models.tosca.simple.concepts.JpaToscaTopologyTemplate;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34
35 /**
36  * Provider used to serialize and deserialize TOSCA objects using GSON.
37  */
38 public class ToscaServiceTemplateMessageBodyHandler extends GsonMessageBodyHandler {
39
40     public static final Logger logger = LoggerFactory.getLogger(ToscaServiceTemplateMessageBodyHandler.class);
41
42     /**
43      * Constructs the object.
44      */
45     public ToscaServiceTemplateMessageBodyHandler() {
46         this(new GsonBuilder());
47
48         logger.info("Using GSON with TOSCA for REST calls");
49     }
50
51     /**
52      * Constructs the object.
53      *
54      * @param builder builder to use to create the gson object
55      */
56     public ToscaServiceTemplateMessageBodyHandler(final GsonBuilder builder) {
57         // @formatter:off
58         super(builder
59                 .registerTypeAdapter(JpaToscaServiceTemplate.class, new ToscaServiceTemplateJsonAdapter())
60                 .registerTypeAdapter(JpaToscaTopologyTemplate.class, new ToscaTopologyTemplateJsonAdapter())
61                 .registerTypeAdapter(JpaToscaPolicies.class, new ToscaPoliciesJsonAdapter())
62                 .registerTypeAdapter(JpaToscaPolicy.class, new ToscaPolicyJsonAdapter())
63                 .registerTypeAdapter(JpaToscaPolicyTypes.class, new ToscaPolicyTypesJsonAdapter())
64                 .registerTypeAdapter(JpaToscaPolicyType.class, new ToscaPolicyTypeJsonAdapter())
65                 .registerTypeAdapter(JpaToscaDataTypes.class, new ToscaDataTypesJsonAdapter())
66                 .registerTypeAdapter(JpaToscaDataType.class, new ToscaDataTypeJsonAdapter())
67                 .setPrettyPrinting()
68                 .create()
69         );
70         // @formatter:on
71     }
72
73 }