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.vnfrest;
24 import java.io.Serializable;
25 import javax.xml.bind.annotation.XmlRootElement;
26 import org.onap.so.entity.MsoRequest;
27 import com.fasterxml.jackson.annotation.JsonRootName;
29 @JsonRootName("deleteVfModuleRequest")
30 @XmlRootElement(name = "deleteVfModuleRequest")
31 public class DeleteVfModuleRequest extends VfRequestCommon implements Serializable {
35 private static final long serialVersionUID = -8504083539107392561L;
36 private String cloudSiteId;
37 private String cloudOwner;
38 private String tenantId;
40 private String vfModuleId;
41 private String vfModuleStackId;
42 private String modelCustomizationUuid;
44 private MsoRequest msoRequest = new MsoRequest();
46 public DeleteVfModuleRequest() {
50 public String getCloudSiteId() {
54 public void setCloudSiteId(String cloudSiteId) {
55 this.cloudSiteId = cloudSiteId;
58 public String getCloudOwner() {
62 public void setCloudOwner(String cloudOwner) {
63 this.cloudOwner = cloudOwner;
66 public String getTenantId() {
70 public void setTenantId(String tenantId) {
71 this.tenantId = tenantId;
74 public String getVnfId() {
78 public void setVnfId(String vnfId) {
82 public String getVfModuleId() {
86 public void setVfModuleId(String vfModuleId) {
87 this.vfModuleId = vfModuleId;
90 public String getVfModuleStackId() {
91 return vfModuleStackId;
94 public void setVfModuleStackId(String vfModuleStackId) {
95 this.vfModuleStackId = vfModuleStackId;
98 public String getModelCustomizationUuid() {
99 return modelCustomizationUuid;
102 public void setModelCustomizationUuid(String modelCustomizationUuid) {
103 this.modelCustomizationUuid = modelCustomizationUuid;
106 public MsoRequest getMsoRequest() {
110 public void setMsoRequest(MsoRequest msoRequest) {
111 this.msoRequest = msoRequest;