Merge "Restructure for authorative models"
[policy/models.git] / models-tosca / src / main / java / org / onap / policy / models / tosca / authorative / mapping / PlainToscaServiceTemplateMapper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Model
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * SPDX-License-Identifier: Apache-2.0
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.policy.models.tosca.authorative.mapping;
24
25 import com.google.gson.Gson;
26 import org.onap.policy.models.tosca.authorative.concepts.ToscaServiceTemplate;
27 import org.onap.policy.models.tosca.simple.concepts.JpaToscaServiceTemplate;
28 import org.onap.policy.models.tosca.simple.mapping.JpaToscaServiceTemplateMapper;
29 import org.onap.policy.models.tosca.simple.serialization.ToscaServiceTemplateMessageBodyHandler;
30
31 /**
32  * This class maps a TOSCA service template from client input form to internal representation and vice verse.
33  *
34  * @author Chenfei Gao (cgao@research.att.com)
35  */
36 public class PlainToscaServiceTemplateMapper
37         implements JpaToscaServiceTemplateMapper<ToscaServiceTemplate, ToscaServiceTemplate> {
38
39     private Gson defaultGson = new Gson();
40     private Gson customGson = new ToscaServiceTemplateMessageBodyHandler().getGson();
41
42     @Override
43     public JpaToscaServiceTemplate toToscaServiceTemplate(ToscaServiceTemplate otherPolicy) {
44
45         String serializedServiceTemplate = defaultGson.toJson(otherPolicy);
46         return customGson.fromJson(serializedServiceTemplate, JpaToscaServiceTemplate.class);
47
48     }
49
50     @Override
51     public ToscaServiceTemplate fromToscaServiceTemplate(JpaToscaServiceTemplate serviceTemplate) {
52
53         String serializedServiceTemplate = customGson.toJson(serviceTemplate);
54         return defaultGson.fromJson(serializedServiceTemplate, ToscaServiceTemplate.class);
55     }
56 }