Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / sdncrest / SDNCServiceResponse.java
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
21 package org.onap.so.adapters.sdncrest;
22
23 import java.io.Serializable;
24 import java.util.LinkedHashMap;
25 import java.util.Map;
26 import javax.xml.bind.annotation.XmlElement;
27 import javax.xml.bind.annotation.XmlRootElement;
28 import com.fasterxml.jackson.annotation.JsonInclude;
29 import com.fasterxml.jackson.annotation.JsonInclude.Include;
30 import com.fasterxml.jackson.annotation.JsonProperty;
31 import com.fasterxml.jackson.annotation.JsonRootName;
32
33 // NOTE: the JAXB (XML) annotations are required with JBoss AS7 and RESTEasy,
34 // even though we are using JSON exclusively. The @NoJackson annotation
35 // is also required in this environment.
36
37 /**
38  * Map<String, String> elements when marshalled to XML produce a list of
39  * <entry><key>${MsoUtils.xmlEscape(key)}</key><value>${MsoUtils.xmlEscape(value)}</value></entry> elements. When
40  * marshalling to JSON they create a list of "${key}" : "${value}" pairs with no extra wrappers.
41  * </pre>
42  */
43 @JsonRootName("SDNCServiceResponse")
44 @JsonInclude(Include.NON_NULL)
45 @XmlRootElement(name = "SDNCServiceResponse")
46 public class SDNCServiceResponse extends SDNCResponseCommon implements Serializable {
47     private static final long serialVersionUID = 1L;
48
49     // Map of response parameters (possibly none).
50     private Map<String, String> params = null;
51
52     public SDNCServiceResponse(String sdncRequestId, String responseCode, String responseMessage,
53             String ackFinalIndicator) {
54         super(sdncRequestId, responseCode, responseMessage, ackFinalIndicator);
55     }
56
57     public SDNCServiceResponse() {}
58
59     @JsonProperty("params")
60     @XmlElement(name = "params")
61     public Map<String, String> getParams() {
62         return params;
63     }
64
65     @JsonProperty("params")
66     public void setParams(Map<String, String> params) {
67         this.params = params;
68     }
69
70     public void addParam(String name, String value) {
71         if (params == null) {
72             params = new LinkedHashMap<>();
73         }
74         params.put(name, value);
75     }
76 }