Containerization feature of SO
[so.git] / adapters / mso-openstack-adapters / src / main / java / org / onap / so / adapters / valet / beans / ValetDeleteRequest.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 Delete request on a Valet Placement API call
30  */
31 public class ValetDeleteRequest implements Serializable {
32         private static final long serialVersionUID = 768026109321305392L;
33         
34         @JsonProperty("region_id")
35         private String regionId;
36         @JsonProperty("tenant_id")
37         private String tenantId;
38         @JsonProperty("vf_module_id")
39         private String vfModuleId;
40         @JsonProperty("vf_module_name")
41         private String vfModuleName;
42         
43         public String getRegionId() {
44                 return this.regionId;
45         }
46         public void setRegionId(String regionId) {
47                 this.regionId = regionId;
48         }
49         public String getTenantId() {
50                 return this.tenantId;
51         }
52         public void setTenantId(String tenantId) {
53                 this.tenantId = tenantId;
54         }
55         public String getVfModuleId() {
56                 return this.vfModuleId;
57         }
58         public void setVfModuleId(String vfModuleId) {
59                 this.vfModuleId = vfModuleId;
60         }
61         public String getVfModuleName() {
62                 return this.vfModuleName;
63         }
64         public void setVfModuleName(String vfModuleName) {
65                 this.vfModuleName = vfModuleName;
66         }
67         @Override
68         public int hashCode() {
69                 return Objects.hash(regionId, tenantId, vfModuleId, vfModuleName);
70         }
71         @Override
72         public boolean equals(Object o) {
73                 if (o == this)
74                         return true;
75                 if (!(o instanceof ValetDeleteRequest)) {
76                         return false;
77                 }
78                 ValetDeleteRequest vdr = (ValetDeleteRequest) o;
79                 return Objects.equals(regionId, vdr.regionId) 
80                                 && Objects.equals(tenantId, vdr.tenantId)
81                                 && Objects.equals(vfModuleId, vdr.vfModuleId)
82                                 && Objects.equals(vfModuleName, vdr.vfModuleName);
83         }
84 }