Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / model-impl / sdnr / src / main / java / org / onap / policy / sdnr / PciResponseWrapper.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * sdnr
4  * ================================================================================
5  * Copyright (C) 2018 Wipro Limited 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.sdnr;
22
23 import com.google.gson.annotations.SerializedName;
24
25 import java.io.Serializable;
26
27 public class PciResponseWrapper extends PciWrapper implements Serializable {
28
29     private static final long serialVersionUID = 109837814781086802L;
30
31     @SerializedName(value = "body")
32     private PciResponse body;
33
34     public PciResponseWrapper() {
35         super();
36     }
37
38     /**
39      * Get the body.
40      * 
41      * @return the body
42      */
43     public PciResponse getBody() {
44         return body;
45     }
46
47     /**
48      * Set the body.
49      * 
50      * @param body
51      *            the body to set
52      */
53     public void setBody(PciResponse body) {
54         this.body = body;
55     }
56
57     @Override
58     public String toString() {
59         return "ResponseWrapper [body=" + body + ", toString()=" + super.toString() + "]";
60     }
61
62     @Override
63     public int hashCode() {
64         final int prime = 31;
65         int result = super.hashCode();
66         result = prime * result + ((body == null) ? 0 : body.hashCode());
67         return result;
68     }
69
70     @Override
71     public boolean equals(Object obj) {
72         if (this == obj) {
73             return true;
74         }
75         if (!super.equals(obj)) {
76             return false;
77         }
78         if (getClass() != obj.getClass()) {
79             return false;
80         }
81         PciResponseWrapper other = (PciResponseWrapper) obj;
82         if (body == null) {
83             if (other.body != null) {
84                 return false;
85             }
86         } else if (!body.equals(other.body)) {
87             return false;
88         }
89         return true;
90     }
91 }