e4085feb0457a56369143e95a244d6fe77b11e09
[policy/models.git] / models-interactions / 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  * 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.so;
23
24 import com.google.gson.annotations.SerializedName;
25
26 import java.io.Serializable;
27 import lombok.Getter;
28 import lombok.Setter;
29
30 @Getter
31 @Setter
32 public class SoResponseWrapper implements Serializable {
33
34     private static final long serialVersionUID = 7673023687132889069L;
35
36     @SerializedName("SoResponse")
37     private SoResponse soResponse;
38
39     private transient String requestId;
40
41     public SoResponseWrapper(SoResponse response, String reqId) {
42         this.soResponse = response;
43         this.requestId = reqId;
44     }
45
46     @Override
47     public boolean equals(Object obj) {
48         if (this == obj) {
49             return true;
50         }
51         if (obj == null) {
52             return false;
53         }
54         if (getClass() != obj.getClass()) {
55             return false;
56         }
57         SoResponseWrapper other = (SoResponseWrapper) obj;
58         if (soResponse == null) {
59             if (other.soResponse != null) {
60                 return false;
61             }
62         } else if (!soResponse.equals(other.soResponse)) {
63             return false;
64         }
65         if (requestId == null) {
66             return other.requestId == null;
67         } else {
68             return requestId.equals(other.requestId);
69         }
70     }
71
72     @Override
73     public int hashCode() {
74         final int prime = 31;
75         int result = super.hashCode();
76         result = prime * result + ((soResponse == null) ? 0 : soResponse.hashCode());
77         result = prime * result + ((requestId == null) ? 0 : requestId.hashCode());
78         return result;
79     }
80
81     @Override
82     public String toString() {
83         return "SOResponseWrapper [SOResponse=" + soResponse + ", RequestId=" + requestId + "]";
84     }
85
86 }