2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.onap.so.adapters.valet.beans;
23 import java.io.Serializable;
24 import java.util.Objects;
26 import com.fasterxml.jackson.annotation.JsonProperty;
29 * This class represents the body of a Delete request on a Valet Placement API call
31 public class ValetDeleteRequest implements Serializable {
32 private static final long serialVersionUID = 768026109321305392L;
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;
45 public String getRegionId() {
48 public void setRegionId(String regionId) {
49 this.regionId = regionId;
51 public String getOwnerId() {
54 public void setOwnerId(String ownerId) {
55 this.ownerId = ownerId;
57 public String getTenantId() {
60 public void setTenantId(String tenantId) {
61 this.tenantId = tenantId;
63 public String getVfModuleId() {
64 return this.vfModuleId;
66 public void setVfModuleId(String vfModuleId) {
67 this.vfModuleId = vfModuleId;
69 public String getVfModuleName() {
70 return this.vfModuleName;
72 public void setVfModuleName(String vfModuleName) {
73 this.vfModuleName = vfModuleName;
76 public int hashCode() {
77 return Objects.hash(regionId, ownerId, tenantId, vfModuleId, vfModuleName);
80 public boolean equals(Object o) {
83 if (!(o instanceof ValetDeleteRequest)) {
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);