Containerization feature of SO
[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 tenantId;
41         private String vnfId;
42         private String vfModuleId;
43         private String vfModuleStackId;
44
45         private MsoRequest msoRequest = new MsoRequest();
46
47         public DeleteVfModuleRequest() {
48                 super();
49         }
50
51         public String getCloudSiteId() {
52                 return cloudSiteId;
53         }
54
55         public void setCloudSiteId(String cloudSiteId) {
56                 this.cloudSiteId = cloudSiteId;
57         }
58
59         public String getTenantId() {
60                 return tenantId;
61         }
62
63         public void setTenantId(String tenantId) {
64                 this.tenantId = tenantId;
65         }
66
67         public String getVnfId() {
68                 return vnfId;
69         }
70
71         public void setVnfId(String vnfId) {
72                 this.vnfId = vnfId;
73         }
74
75         public String getVfModuleId() {
76                 return vfModuleId;
77         }
78
79         public void setVfModuleId(String vfModuleId) {
80                 this.vfModuleId = vfModuleId;
81         }
82
83         public String getVfModuleStackId() {
84                 return vfModuleStackId;
85         }
86
87         public void setVfModuleStackId(String vfModuleStackId) {
88                 this.vfModuleStackId = vfModuleStackId;
89         }
90
91         public MsoRequest getMsoRequest() {
92                 return msoRequest;
93         }
94
95         public void setMsoRequest(MsoRequest msoRequest) {
96                 this.msoRequest = msoRequest;
97         }
98 }