Use lombok annotations for objects in models-interaction/models-impl module
[policy/models.git] / models-interactions / model-impl / appc / src / main / java / org / onap / policy / appc / ResponseStatus.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * appc
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.appc;
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 ResponseStatus implements Serializable {
33     private static final long serialVersionUID = 2421770469587860452L;
34
35     @SerializedName("Code")
36     private int code;
37
38     @SerializedName("Value")
39     private String value;
40
41     @SerializedName("Description")
42     private String description;
43
44     @Override
45     public String toString() {
46         return "ResponseStatus [Code=" + code + ", Value=" + value + ", Description=" + description + "]";
47     }
48
49     @Override
50     public int hashCode() {
51         final int prime = 31;
52         int result = 1;
53         result = prime * result + code;
54         result = prime * result + ((description == null) ? 0 : description.hashCode());
55         result = prime * result + ((value == null) ? 0 : value.hashCode());
56         return result;
57     }
58
59     @Override
60     public boolean equals(Object obj) {
61         if (this == obj) {
62             return true;
63         }
64         if (obj == null) {
65             return false;
66         }
67         if (getClass() != obj.getClass()) {
68             return false;
69         }
70         ResponseStatus other = (ResponseStatus) obj;
71         if (code != other.code) {
72             return false;
73         }
74         if (description == null) {
75             if (other.description != null) {
76                 return false;
77             }
78         } else if (!description.equals(other.description)) {
79             return false;
80         }
81         if (value == null) {
82             if (other.value != null) {
83                 return false;
84             }
85         } else if (!value.equals(other.value)) {
86             return false;
87         }
88         return true;
89     }
90
91 }