e7cc9b9ceb14132409073585224f19edf6eb4bea
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / openecomp / mso / adapters / nwrest / NetworkResponseCommon.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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
21 package org.openecomp.mso.adapters.nwrest;
22
23
24
25 import java.io.ByteArrayOutputStream;
26
27 import javax.xml.bind.JAXBContext;
28 import javax.xml.bind.Marshaller;
29
30 import org.codehaus.jackson.map.ObjectMapper;
31 import org.codehaus.jackson.map.SerializationConfig;
32
33 /**
34  * Everything that is common between all Volume Group Responses, except for QueryVolumeGroupResponse.
35  */
36 public abstract class NetworkResponseCommon {
37         private String messageId;
38
39         public NetworkResponseCommon() {
40                 messageId = null;
41         }
42
43         public NetworkResponseCommon(String messageId) {
44                 this.messageId = messageId;
45         }
46
47         public String getMessageId() {
48                 return messageId;
49         }
50
51         public void setMessageId(String messageId) {
52                 this.messageId = messageId;
53         }
54
55         public String toJsonString() {
56                 String jsonString = null;
57                 try {
58                         ObjectMapper mapper = new ObjectMapper();
59                         mapper.enable(SerializationConfig.Feature.WRAP_ROOT_VALUE);
60                         jsonString = mapper.writeValueAsString(this);
61                 } catch (Exception e) {
62                         // ignore
63                 }
64                 return jsonString;
65         }
66
67         public String toXmlString() {
68                 try {
69                         ByteArrayOutputStream bs = new ByteArrayOutputStream();
70                         JAXBContext context = JAXBContext.newInstance(this.getClass());
71                         Marshaller marshaller = context.createMarshaller();
72                         marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true); //pretty print XML
73                         marshaller.marshal(this, bs);
74                         return bs.toString();
75                 } catch (Exception e) {
76                         // Shouldn't happen...
77                         e.printStackTrace();
78                         return "";
79                 }
80         }
81 }