d9825ddca2e1a0a27e6a8b213220138317df35bf
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / vnfrest / DeleteVfModuleRequest.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.vnfrest;
22
23
24 import java.io.Serializable;
25
26 import javax.xml.bind.annotation.XmlRootElement;
27
28 import org.onap.so.entity.MsoRequest;
29
30 import com.fasterxml.jackson.annotation.JsonRootName;
31
32 @JsonRootName("deleteVfModuleRequest")
33 @XmlRootElement(name = "deleteVfModuleRequest")
34 public class DeleteVfModuleRequest extends VfRequestCommon implements Serializable {
35         /**
36          * 
37          */
38         private static final long serialVersionUID = -8504083539107392561L;
39         private String cloudSiteId;
40         private String cloudOwner;
41         private String tenantId;
42         private String vnfId;
43         private String vfModuleId;
44         private String vfModuleStackId;
45
46         private MsoRequest msoRequest = new MsoRequest();
47
48         public DeleteVfModuleRequest() {
49                 super();
50         }
51
52         public String getCloudSiteId() {
53                 return cloudSiteId;
54         }
55
56         public void setCloudSiteId(String cloudSiteId) {
57                 this.cloudSiteId = cloudSiteId;
58         }
59
60         public String getCloudOwner() {
61                 return cloudOwner;
62         }
63
64         public void setCloudOwner(String cloudOwner) {
65                 this.cloudOwner = cloudOwner;
66         }
67
68         public String getTenantId() {
69                 return tenantId;
70         }
71
72         public void setTenantId(String tenantId) {
73                 this.tenantId = tenantId;
74         }
75
76         public String getVnfId() {
77                 return vnfId;
78         }
79
80         public void setVnfId(String vnfId) {
81                 this.vnfId = vnfId;
82         }
83
84         public String getVfModuleId() {
85                 return vfModuleId;
86         }
87
88         public void setVfModuleId(String vfModuleId) {
89                 this.vfModuleId = vfModuleId;
90         }
91
92         public String getVfModuleStackId() {
93                 return vfModuleStackId;
94         }
95
96         public void setVfModuleStackId(String vfModuleStackId) {
97                 this.vfModuleStackId = vfModuleStackId;
98         }
99
100         public MsoRequest getMsoRequest() {
101                 return msoRequest;
102         }
103
104         public void setMsoRequest(MsoRequest msoRequest) {
105                 this.msoRequest = msoRequest;
106         }
107 }