75d7df1a836a72faf547e1df3b9c8df7083dd206
[so.git] /
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("owner_id")
37         private String ownerId;
38         @JsonProperty("tenant_id")
39         private String tenantId;
40         @JsonProperty("vf_module_id")
41         private String vfModuleId;
42         @JsonProperty("vf_module_name")
43         private String vfModuleName;
44
45         public String getRegionId() {
46                 return this.regionId;
47         }
48         public void setRegionId(String regionId) {
49                 this.regionId = regionId;
50         }
51     public String getOwnerId() {
52         return this.ownerId;
53     }
54     public void setOwnerId(String ownerId) {
55         this.ownerId = ownerId;
56     }
57         public String getTenantId() {
58                 return this.tenantId;
59         }
60         public void setTenantId(String tenantId) {
61                 this.tenantId = tenantId;
62         }
63         public String getVfModuleId() {
64                 return this.vfModuleId;
65         }
66         public void setVfModuleId(String vfModuleId) {
67                 this.vfModuleId = vfModuleId;
68         }
69         public String getVfModuleName() {
70                 return this.vfModuleName;
71         }
72         public void setVfModuleName(String vfModuleName) {
73                 this.vfModuleName = vfModuleName;
74         }
75         @Override
76         public int hashCode() {
77                 return Objects.hash(regionId, ownerId, tenantId, vfModuleId, vfModuleName);
78         }
79         @Override
80         public boolean equals(Object o) {
81                 if (o == this)
82                         return true;
83                 if (!(o instanceof ValetDeleteRequest)) {
84                         return false;
85                 }
86                 ValetDeleteRequest vdr = (ValetDeleteRequest) o;
87                 return Objects.equals(regionId, vdr.regionId)
88                         && Objects.equals(ownerId, vdr.ownerId)
89                                 && Objects.equals(tenantId, vdr.tenantId)
90                                 && Objects.equals(vfModuleId, vdr.vfModuleId)
91                                 && Objects.equals(vfModuleName, vdr.vfModuleName);
92         }
93 }