Merge "Reorder modifiers"
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / openecomp / mso / adapters / nwrest / NetworkResponseCommon.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * Copyright (C) 2017 Huawei Technologies Co., Ltd. All rights reserved.
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
22 package org.openecomp.mso.adapters.nwrest;
23
24
25
26 import java.io.ByteArrayOutputStream;
27
28 import javax.xml.bind.JAXBContext;
29 import javax.xml.bind.Marshaller;
30
31 import com.fasterxml.jackson.databind.ObjectMapper;
32 import com.fasterxml.jackson.databind.SerializationFeature;
33 import org.openecomp.mso.logger.MsoLogger;
34 /**
35  * Everything that is common between all Volume Group Responses, except for QueryVolumeGroupResponse.
36  */
37 public abstract class NetworkResponseCommon {
38         private String messageId;
39         private static final MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA);
40
41         public NetworkResponseCommon() {
42                 messageId = null;
43         }
44
45         public NetworkResponseCommon(String messageId) {
46                 this.messageId = messageId;
47         }
48
49         public String getMessageId() {
50                 return messageId;
51         }
52
53         public void setMessageId(String messageId) {
54                 this.messageId = messageId;
55         }
56
57         public String toJsonString() {
58                 String jsonString = null;
59                 try {
60                         ObjectMapper mapper = new ObjectMapper();
61                         mapper.enable(SerializationFeature.WRAP_ROOT_VALUE);
62                         jsonString = mapper.writeValueAsString(this);
63                 } catch (Exception e) {
64                     LOGGER.debug("Exception:", e);
65                 }
66                 return jsonString;
67         }
68
69         public String toXmlString() {
70                 try {
71                         ByteArrayOutputStream bs = new ByteArrayOutputStream();
72                         JAXBContext context = JAXBContext.newInstance(this.getClass());
73                         Marshaller marshaller = context.createMarshaller();
74                         marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); //pretty print XML
75                         marshaller.marshal(this, bs);
76                         return bs.toString();
77                 } catch (Exception e) {
78                     LOGGER.debug("Exception:", e);
79                         return "";
80                 }
81         }
82 }