fix code smell in model-impl
[policy/models.git] / models-interactions / model-impl / appc / src / main / java / org / onap / policy / appc / Response.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * appc
4  * ================================================================================
5  * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
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.onap.policy.appc;
23
24 import com.google.gson.annotations.SerializedName;
25
26 import java.io.Serializable;
27 import java.util.HashMap;
28 import java.util.Map;
29
30 public class Response implements Serializable {
31
32     private static final long serialVersionUID = 434953706339865151L;
33
34     @SerializedName("CommonHeader")
35     private CommonHeader commonHeader;
36
37     @SerializedName("Status")
38     private ResponseStatus status = new ResponseStatus();
39
40     @SerializedName("Payload")
41     private HashMap<String, Object> payload = new HashMap<>();
42
43     public Response() {
44
45     }
46
47     /**
48      * Construct an instance from an existing instance.
49      *
50      * @param request the existing instance
51      */
52     public Response(Request request) {
53         if (request.getCommonHeader() != null) {
54             this.commonHeader = new CommonHeader(request.getCommonHeader());
55         }
56         if (request.getPayload() != null) {
57             this.payload.putAll(request.getPayload());
58         }
59     }
60
61     public CommonHeader getCommonHeader() {
62         return commonHeader;
63     }
64
65     public void setCommonHeader(CommonHeader commonHeader) {
66         this.commonHeader = commonHeader;
67     }
68
69     public ResponseStatus getStatus() {
70         return status;
71     }
72
73     public void setStatus(ResponseStatus status) {
74         this.status = status;
75     }
76
77     public Map<String, Object> getPayload() {
78         return payload;
79     }
80
81     public void setPayload(Map<String, Object> payload) {
82         this.payload = new HashMap<>(payload);
83     }
84
85     @Override
86     public String toString() {
87         return "Response [CommonHeader=" + commonHeader + ", Status=" + status + ", Payload=" + payload + "]";
88     }
89
90     @Override
91     public int hashCode() {
92         final int prime = 31;
93         int result = 1;
94         result = prime * result + ((commonHeader == null) ? 0 : commonHeader.hashCode());
95         result = prime * result + ((payload == null) ? 0 : payload.hashCode());
96         result = prime * result + ((status == null) ? 0 : status.hashCode());
97         return result;
98     }
99
100     @Override
101     public boolean equals(Object obj) {
102         if (this == obj) {
103             return true;
104         }
105         if (obj == null) {
106             return false;
107         }
108         if (getClass() != obj.getClass()) {
109             return false;
110         }
111         Response other = (Response) obj;
112         if (commonHeader == null) {
113             if (other.commonHeader != null) {
114                 return false;
115             }
116         } else if (!commonHeader.equals(other.commonHeader)) {
117             return false;
118         }
119         if (payload == null) {
120             if (other.payload != null) {
121                 return false;
122             }
123         } else if (!payload.equals(other.payload)) {
124             return false;
125         }
126         if (status == null) {
127             if (other.status != null) {
128                 return false;
129             }
130         } else if (!status.equals(other.status)) {
131             return false;
132         }
133         return true;
134     }
135
136
137 }