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