Migrate Spike code to ONAP
[aai/spike.git] / src / main / java / org / onap / aai / spike / schema / MapAdapter.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.spike.schema;
22
23 import java.util.ArrayList;
24 import java.util.List;
25 import java.util.Map;
26 import javax.naming.OperationNotSupportedException;
27 import javax.xml.bind.JAXBElement;
28 import javax.xml.bind.annotation.XmlAnyElement;
29 import javax.xml.bind.annotation.adapters.XmlAdapter;
30 import javax.xml.namespace.QName;
31
32
33 public class MapAdapter extends XmlAdapter<MapAdapter.AdaptedMap, Map<String, Object>> {
34
35     public static class AdaptedMap {
36         @XmlAnyElement
37         List elements;
38     }
39
40     @Override
41     public Map<String, Object> unmarshal(AdaptedMap map) throws Exception {
42         throw new OperationNotSupportedException(); // really??
43     }
44
45     @Override
46     public AdaptedMap marshal(Map<String, Object> map) throws Exception {
47
48         AdaptedMap adaptedMap = new AdaptedMap();
49         List elements = new ArrayList();
50         for (Map.Entry<String, Object> property : map.entrySet()) {
51
52             if (property.getValue() instanceof Map) {
53                 elements.add(new JAXBElement<AdaptedMap>(new QName(property.getKey()), MapAdapter.AdaptedMap.class,
54                         marshal((Map) property.getValue())));
55
56             } else {
57
58                 elements.add(new JAXBElement<String>(new QName(property.getKey()), String.class,
59                         property.getValue().toString()));
60             }
61         }
62         adaptedMap.elements = elements;
63         return adaptedMap;
64     }
65 }