e816646e1ce861af4e65982be0fcc52585d22684
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / openstack / mappers / MapAdapter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 - 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  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.openstack.mappers;
22
23 import java.util.HashMap;
24 import java.util.Map;
25
26 import javax.xml.bind.annotation.adapters.XmlAdapter;
27
28 import org.w3c.dom.Element;
29
30 public class MapAdapter extends XmlAdapter<MapEntry, Map<String, Object>> {
31
32         @Override
33         public MapEntry marshal(Map<String, Object> v) throws Exception {
34
35                 if (v == null || v.isEmpty()) {return null;}
36
37                 MapEntry map = new MapEntry();
38
39                 for (String key : v.keySet()) {
40                         map.addEntry(key, v.get(key));
41                 }
42
43                 return map;
44         }
45
46         @Override
47         public Map<String, Object> unmarshal(MapEntry v) throws Exception {
48                 if (v == null) {return null;}
49
50                 Map<String, Object> map = new HashMap<>(v.entry.size());
51
52                 for(MapElements entry: v.entry) {
53                         if (entry.value instanceof Element) {
54                                 map.put(entry.key, ((Element)entry.value).getTextContent());
55                         } else {
56                                 map.put(entry.key, entry.value);
57                         }
58                 }
59
60                 return map;
61         }
62 }