Containerization feature of SO
[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         @Override
40         public String toString() {
41                 return new ToStringBuilder(this).append("status", status).append("message", message).toString();
42         }
43
44         public ValetStatus() {
45                 super();
46         }
47         
48         public ValetStatus(String statusCode, String statusMessage) {
49                 super();
50                 this.status = statusCode;
51                 this.message = statusMessage;
52         }
53         
54         public String getStatus() {
55                 return this.status;
56         }
57         public void setStatus(String statusCode) {
58                 this.status = statusCode;
59         }
60         public String getMessage() {
61                 return this.message;
62         }
63         public void setMessage(String statusMessage) {
64                 this.message = statusMessage;
65         }
66
67         @Override
68         public int hashCode() {
69                 return Objects.hash(status, message);
70         }
71         @Override
72         public boolean equals(Object o) {
73                 if (o == this)
74                         return true;
75                 if (!(o instanceof ValetStatus)) {
76                         return false;
77                 }
78                 ValetStatus vs = (ValetStatus) o;
79                 return Objects.equals(status, vs.status) && Objects.equals(message, vs.message);
80         }
81 }