cc48e95c81af7c96cd39a1f1fe05f176c96d2802
[so.git] / adapters / mso-openstack-adapters / src / main / java / org / onap / so / adapters / valet / beans / ValetStatus.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.so.adapters.valet.beans;
22
23 import java.io.Serializable;
24 import java.util.Objects;
25
26 import com.fasterxml.jackson.annotation.JsonProperty;
27 import org.apache.commons.lang3.builder.ToStringBuilder;
28
29 /* 
30  * This class represents the status object as defined in the Valet Placement Operations API - part of Response objects
31  */
32 public class ValetStatus implements Serializable {
33         private static final long serialVersionUID = 1L;
34         @JsonProperty("status")
35         private String status;
36         @JsonProperty("message")
37         private String message;
38
39
40         public ValetStatus() {
41                 super();
42         }
43         
44         public ValetStatus(String statusCode, String statusMessage) {
45                 super();
46                 this.status = statusCode;
47                 this.message = statusMessage;
48         }
49         
50         
51         @Override
52         public String toString() {
53                 return new ToStringBuilder(this).append("status", status).append("message", message).toString();
54         }
55         
56         public String getStatus() {
57                 return this.status;
58         }
59         public void setStatus(String statusCode) {
60                 this.status = statusCode;
61         }
62         public String getMessage() {
63                 return this.message;
64         }
65         public void setMessage(String statusMessage) {
66                 this.message = statusMessage;
67         }
68
69         @Override
70         public int hashCode() {
71                 return Objects.hash(status, message);
72         }
73         @Override
74         public boolean equals(Object o) {
75                 if (o == this)
76                         return true;
77                 if (!(o instanceof ValetStatus)) {
78                         return false;
79                 }
80                 ValetStatus vs = (ValetStatus) o;
81                 return Objects.equals(status, vs.status) && Objects.equals(message, vs.message);
82         }
83 }