Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / model-impl / appclcm / src / main / java / org / onap / policy / appclcm / LcmRequestWrapper.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 LcmRequestWrapper extends LcmWrapper implements Serializable {
28
29     private static final long serialVersionUID = 424866914715980798L;
30
31     @SerializedName(value = "body")
32     private LcmRequest body;
33
34     public LcmRequestWrapper() {
35         super();
36     }
37
38     public LcmRequestWrapper(LcmRequest request) {
39         body = request;
40     }
41
42     /**
43      * Get the body.
44      * 
45      * @return the body
46      */
47     public LcmRequest getBody() {
48         return body;
49     }
50
51     /**
52      * Set the body.
53      * 
54      * @param body the body to set
55      */
56     public void setBody(LcmRequest body) {
57         this.body = body;
58     }
59
60     @Override
61     public String toString() {
62         return "RequestWrapper [body=" + body + ", toString()=" + super.toString() + "]";
63     }
64
65     @Override
66     public int hashCode() {
67         final int prime = 31;
68         int result = super.hashCode();
69         result = prime * result + ((body == null) ? 0 : body.hashCode());
70         return result;
71     }
72
73     @Override
74     public boolean equals(Object obj) {
75         if (this == obj) {
76             return true;
77         }
78         if (!super.equals(obj)) {
79             return false;
80         }
81         if (getClass() != obj.getClass()) {
82             return false;
83         }
84         LcmRequestWrapper other = (LcmRequestWrapper) obj;
85         if (body == null) {
86             if (other.body != null) {
87                 return false;
88             }
89         } else if (!body.equals(other.body)) {
90             return false;
91         }
92         return true;
93     }
94
95 }