migrate model-impl from drools-applications
[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     private static final long serialVersionUID = 434953706339865151L;
32
33     @SerializedName("CommonHeader")
34     private CommonHeader commonHeader;
35
36     @SerializedName("Status")
37     private ResponseStatus status = new ResponseStatus();
38
39     @SerializedName("Payload")
40     private HashMap<String, Object> payload = new HashMap<>();
41
42     public Response() {
43
44     }
45
46     /**
47      * Construct an instance from an existing instance.
48      * 
49      * @param request the existing instance
50      */
51     public Response(Request request) {
52         if (request.getCommonHeader() != null) {
53             this.commonHeader = new CommonHeader(request.getCommonHeader());
54         }
55         if (request.getPayload() != null) {
56             this.payload.putAll(request.getPayload());
57         }
58     }
59
60     public CommonHeader getCommonHeader() {
61         return commonHeader;
62     }
63
64     public void setCommonHeader(CommonHeader commonHeader) {
65         this.commonHeader = commonHeader;
66     }
67
68     public ResponseStatus getStatus() {
69         return status;
70     }
71
72     public void setStatus(ResponseStatus status) {
73         this.status = status;
74     }
75
76     public Map<String, Object> getPayload() {
77         return payload;
78     }
79
80     public void setPayload(Map<String, Object> payload) {
81         this.payload = new HashMap<>(payload);
82     }
83
84     @Override
85     public String toString() {
86         return "Response [CommonHeader=" + commonHeader + ", Status=" + status + ", Payload=" + payload + "]";
87     }
88
89     @Override
90     public int hashCode() {
91         final int prime = 31;
92         int result = 1;
93         result = prime * result + ((commonHeader == null) ? 0 : commonHeader.hashCode());
94         result = prime * result + ((payload == null) ? 0 : payload.hashCode());
95         result = prime * result + ((status == null) ? 0 : status.hashCode());
96         return result;
97     }
98
99     @Override
100     public boolean equals(Object obj) {
101         if (this == obj) {
102             return true;
103         }
104         if (obj == null) {
105             return false;
106         }
107         if (getClass() != obj.getClass()) {
108             return false;
109         }
110         Response other = (Response) obj;
111         if (commonHeader == null) {
112             if (other.commonHeader != null) {
113                 return false;
114             }
115         } else if (!commonHeader.equals(other.commonHeader)) {
116             return false;
117         }
118         if (payload == null) {
119             if (other.payload != null) {
120                 return false;
121             }
122         } else if (!payload.equals(other.payload)) {
123             return false;
124         }
125         if (status == null) {
126             if (other.status != null) {
127                 return false;
128             }
129         } else if (!status.equals(other.status)) {
130             return false;
131         }
132         return true;
133     }
134
135
136
137 }