Applying license changes to all files
[appc.git] / appc-dispatcher / appc-command-executor / appc-command-executor-api / src / main / java / org / openecomp / appc / executor / conv / Converter.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22  * ============LICENSE_END=========================================================
23  */
24
25 package org.openecomp.appc.executor.conv;
26
27 import java.io.IOException;
28
29 import org.openecomp.appc.executor.objects.Params;
30
31 import com.fasterxml.jackson.core.JsonProcessingException;
32 import com.fasterxml.jackson.databind.ObjectMapper;
33
34
35 public class Converter {
36
37     public static Params convJsonStringToParams(String inObj) throws IOException {
38         Params outObj = null;
39         if(inObj != null) {
40             outObj = new ObjectMapper().readValue(inObj, Params.class);
41         }
42         return outObj;
43     }
44
45     public static String convParamsToJsonString(Params inObj) throws JsonProcessingException {
46         String outObj = null;
47         if(inObj != null) {
48             outObj = new ObjectMapper().writeValueAsString(inObj);
49         }
50         return outObj;
51     }
52 }