56611508126bfb4b867525e596331adae600862a
[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
28 public class ResponseStatus implements Serializable {
29     private static final long serialVersionUID = 2421770469587860452L;
30
31     @SerializedName("Code")
32     private int code;
33
34     @SerializedName("Value")
35     private String value;
36
37     @SerializedName("Description")
38     private String description;
39
40     @Override
41     public String toString() {
42         return "ResponseStatus [Code=" + code + ", Value=" + value + ", Description=" + description + "]";
43     }
44
45     public int getCode() {
46         return code;
47     }
48
49     public void setCode(int code) {
50         this.code = code;
51     }
52
53     public String getValue() {
54         return value;
55     }
56
57     public void setValue(String value) {
58         this.value = value;
59     }
60
61     public String getDescription() {
62         return description;
63     }
64
65     public void setDescription(String description) {
66         this.description = description;
67     }
68
69     @Override
70     public int hashCode() {
71         final int prime = 31;
72         int result = 1;
73         result = prime * result + code;
74         result = prime * result + ((description == null) ? 0 : description.hashCode());
75         result = prime * result + ((value == null) ? 0 : value.hashCode());
76         return result;
77     }
78
79     @Override
80     public boolean equals(Object obj) {
81         if (this == obj) {
82             return true;
83         }
84         if (obj == null) {
85             return false;
86         }
87         if (getClass() != obj.getClass()) {
88             return false;
89         }
90         ResponseStatus other = (ResponseStatus) obj;
91         if (code != other.code) {
92             return false;
93         }
94         if (description == null) {
95             if (other.description != null) {
96                 return false;
97             }
98         } else if (!description.equals(other.description)) {
99             return false;
100         }
101         if (value == null) {
102             if (other.value != null) {
103                 return false;
104             }
105         } else if (!value.equals(other.value)) {
106             return false;
107         }
108         return true;
109     }
110
111 }