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