2a3a64ce1b211991d5c776a1074b702c4a252d9c
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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 package org.openecomp.mso.adapters.json;
21
22 import org.codehaus.jackson.JsonNode;
23 import org.codehaus.jackson.JsonParser;
24 import org.codehaus.jackson.map.DeserializationContext;
25 import org.codehaus.jackson.map.JsonDeserializer;
26 import org.codehaus.jackson.map.ObjectMapper;
27
28 import java.io.IOException;
29 import java.util.Iterator;
30 import java.util.LinkedHashMap;
31 import java.util.Map;
32
33 /**
34  * Custom JSON Deserializer for Map<String, String>.
35  * In MSO with Jackson 1.9.12 and RestEasy 3.0.8, maps in JSON are serialized as
36  * follows:
37  * <pre>
38  * "params": {
39  *   "entry": [
40  *     {"key": "P1", "value": "V1"},
41  *     {"key": "P2", "value": "V2"},
42  *     ...
43  *     {"key": "PN", "value": "VN"}
44  *   ]
45  * }
46  * The implementation uses a LinkedHashMap to preserve the ordering of entries.
47  * </pre>
48  */
49 public class MapDeserializer extends JsonDeserializer<Map<String, String>> {
50
51         @Override
52         public Map<String, String> deserialize(JsonParser parser,
53                         DeserializationContext context) throws IOException {
54                 ObjectMapper mapper = new ObjectMapper();
55                 JsonNode tree = mapper.readTree(parser);
56                 Map<String, String> map = new LinkedHashMap<>();
57                 if (tree == null)
58                         return map;
59                 for (JsonNode element : tree) {
60                         for (JsonNode arrayElement : element) {
61                                 String key = arrayElement.get("key").getTextValue();
62                                 String value = arrayElement.get("value").getTextValue();
63                                 map.put(key, value);
64                         }
65                 }
66                 return map;
67         }
68 }