Add serialization for Tosca Model
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / serialization / legacy / LegacyGuardMessageBodyHandler.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.serialization.legacy;
20
21 import com.google.gson.GsonBuilder;
22
23 import org.onap.policy.common.gson.GsonMessageBodyHandler;
24 import org.slf4j.Logger;
25 import org.slf4j.LoggerFactory;
26
27 /**
28  * Provider used to serialize and deserialize TOSCA objects using GSON.
29  */
30 public class LegacyGuardMessageBodyHandler extends GsonMessageBodyHandler {
31
32     public static final Logger logger = LoggerFactory.getLogger(LegacyGuardMessageBodyHandler.class);
33
34     /**
35      * Constructs the object.
36      */
37     public LegacyGuardMessageBodyHandler() {
38         this(new GsonBuilder());
39
40         logger.info("Using GSON with TOSCA for REST calls");
41     }
42
43     /**
44      * Constructs the object.
45      *
46      * @param builder builder to use to create the gson object
47      */
48     public LegacyGuardMessageBodyHandler(final GsonBuilder builder) {
49         // @formatter:off
50         super(builder
51                 .create()
52         );
53         // @formatter:on
54     }
55
56 }