Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / model-impl / so / src / main / java / org / onap / policy / so / SoResponseWrapper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * so
4  * ================================================================================
5  * Copyright (C) 2017-2019 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.policy.so;
22
23 import com.google.gson.annotations.SerializedName;
24
25 import java.io.Serializable;
26
27 public class SoResponseWrapper implements Serializable {
28
29     private static final long serialVersionUID = 7673023687132889069L;
30
31     @SerializedName("SoResponse")
32     private SoResponse soResponse;
33
34     private transient String requestId;
35
36     public SoResponseWrapper(SoResponse response, String reqId) {
37         this.soResponse = response;
38         this.requestId = reqId;
39     }
40
41     @Override
42     public boolean equals(Object obj) {
43         if (this == obj) {
44             return true;
45         }
46         if (obj == null) {
47             return false;
48         }
49         if (getClass() != obj.getClass()) {
50             return false;
51         }
52         SoResponseWrapper other = (SoResponseWrapper) obj;
53         if (soResponse == null) {
54             if (other.soResponse != null) {
55                 return false;
56             }
57         }
58         else if (!soResponse.equals(other.soResponse)) {
59             return false;
60         }
61         if (requestId == null) {
62             if (other.requestId != null) {
63                 return false;
64             }
65         }
66         else if (!requestId.equals(other.requestId)) {
67             return false;
68         }
69         return true;
70     }
71
72     public String getRequestId() {
73         return requestId;
74     }
75
76     public SoResponse getSoResponse() {
77         return soResponse;
78     }
79
80     @Override
81     public int hashCode() {
82         final int prime = 31;
83         int result = super.hashCode();
84         result = prime * result + ((soResponse == null) ? 0 : soResponse.hashCode());
85         result = prime * result + ((requestId == null) ? 0 : requestId.hashCode());
86         return result;
87     }
88
89     public void setRequestId(String requestId) {
90         this.requestId = requestId;
91     }
92
93     public void setSoResponse(SoResponse response) {
94         soResponse = response;
95     }
96
97     @Override
98     public String toString() {
99         return "SOResponseWrapper [SOResponse=" + soResponse + ", RequestId=" + requestId + "]";
100     }
101
102 }