4159ede610883920596c317da2fcd6c8399f8de6
[appc.git] / appc-common / src / main / java / org / openecomp / appc / util / JsonUtil.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.openecomp.appc.util;
24
25 import com.fasterxml.jackson.databind.ObjectMapper;
26
27 import java.io.IOException;
28 import java.util.Map;
29
30
31 public class JsonUtil {
32     /**
33      * @param valueAsString a valid json Map represented as String
34      * @return a flat map that each entry key derived from hierarchy path in the json object and flatted to a dotted separated string.
35      *   e.g. "{\"A\":\"A-value\",\"B\":{\"C\":\"B.C-value\",\"D\":\"B.D-value\"}}"; will be represented as {A=A-value, B.C=B.C-value, B.D=B.D-value}
36      *   when it required that the input will not be flatted the json string should be formatted as below example:
37      *   e.g. "{\"A\":\"A-value\",\"B\":\"{\\\"C\\\":\\\"C-value\\\",\\\"D\\\":\\\"D-value\\\"}\"}" will be represented as {A=A-value, B={"C":"C-value","D":"D-value"}}
38      * @throws IOException when the object is not valid json Map
39      */
40     public static Map<String, String> convertJsonStringToFlatMap(String valueAsString) throws IOException {
41         ObjectMapper objectMapper = new ObjectMapper();
42         Map readValueMap = objectMapper.readValue(valueAsString,Map.class);
43         return org.openecomp.appc.util.ObjectMapper.map(readValueMap);
44     }
45 }