Containerization feature of SO
[so.git] / adapters / mso-openstack-adapters / src / main / java / org / onap / so / adapters / valet / beans / ValetRollbackRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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
28 /*
29  * This class represents the body of a Rollback request on a Valet Placement API call
30  */
31 public class ValetRollbackRequest implements Serializable {
32         private static final long serialVersionUID = 768026109321305392L;
33
34         @JsonProperty("stack_id")
35         private String stackId;
36         @JsonProperty("suppress_rollback")
37         private Boolean suppressRollback = false;
38         @JsonProperty("error_message")
39         private String errorMessage;
40         
41         public ValetRollbackRequest() {
42                 super();
43         }
44         
45         public String getStackId() {
46                 return this.stackId;
47         }
48         public void setStackId(String stackId) {
49                 this.stackId = stackId;
50         }
51         public Boolean getSuppressRollback() {
52                 return this.suppressRollback;
53         }
54         public void setSuppressRollback(Boolean suppressRollback) {
55                 this.suppressRollback = suppressRollback;
56         }
57         public String getErrorMessage() {
58                 return this.errorMessage;
59         }
60         public void setErrorMessage(String errorMessage) {
61                 this.errorMessage = errorMessage;
62         }
63         
64         @Override
65         public int hashCode() {
66                 return Objects.hash(stackId, suppressRollback, errorMessage);
67         }
68         @Override
69         public boolean equals(Object o) {
70                 if (o == this)
71                         return true;
72                 if (!(o instanceof ValetRollbackRequest)) {
73                         return false;
74                 }
75                 ValetRollbackRequest vrr = (ValetRollbackRequest) o;
76                 return Objects.equals(stackId, vrr.stackId)
77                                 && Objects.equals(suppressRollback, vrr.suppressRollback)
78                                 && Objects.equals(errorMessage, vrr.errorMessage);
79         }
80
81 }