2  * ============LICENSE_START=======================================================
 
   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
 
  12  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  22 package org.onap.policy.appclcm;
 
  24 import com.google.gson.annotations.SerializedName;
 
  26 import java.io.Serializable;
 
  28 public class LcmResponseWrapper extends LcmWrapper implements Serializable {
 
  30     private static final long serialVersionUID = 463937813781086802L;
 
  32     @SerializedName(value = "body")
 
  33     private LcmResponse body;
 
  35     public LcmResponseWrapper() {
 
  44     public LcmResponse getBody() {
 
  51      * @param body the body to set
 
  53     public void setBody(LcmResponse body) {
 
  58     public String toString() {
 
  59         return "ResponseWrapper [body=" + body + ", toString()=" + super.toString() + "]";
 
  63     public int hashCode() {
 
  65         int result = super.hashCode();
 
  66         result = prime * result + ((body == null) ? 0 : body.hashCode());
 
  71     public boolean equals(Object obj) {
 
  75         if (!super.equals(obj)) {
 
  78         if (getClass() != obj.getClass()) {
 
  81         LcmResponseWrapper other = (LcmResponseWrapper) obj;
 
  83             if (other.body != null) {
 
  86         } else if (!body.equals(other.body)) {