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;
 
  43     private MsoRequest msoRequest = new MsoRequest();
 
  45     public DeleteVfModuleRequest() {
 
  49     public String getCloudSiteId() {
 
  53     public void setCloudSiteId(String cloudSiteId) {
 
  54         this.cloudSiteId = cloudSiteId;
 
  57     public String getCloudOwner() {
 
  61     public void setCloudOwner(String cloudOwner) {
 
  62         this.cloudOwner = cloudOwner;
 
  65     public String getTenantId() {
 
  69     public void setTenantId(String tenantId) {
 
  70         this.tenantId = tenantId;
 
  73     public String getVnfId() {
 
  77     public void setVnfId(String vnfId) {
 
  81     public String getVfModuleId() {
 
  85     public void setVfModuleId(String vfModuleId) {
 
  86         this.vfModuleId = vfModuleId;
 
  89     public String getVfModuleStackId() {
 
  90         return vfModuleStackId;
 
  93     public void setVfModuleStackId(String vfModuleStackId) {
 
  94         this.vfModuleStackId = vfModuleStackId;
 
  97     public MsoRequest getMsoRequest() {
 
 101     public void setMsoRequest(MsoRequest msoRequest) {
 
 102         this.msoRequest = msoRequest;