Initial OpenECOMP MSO commit
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / openecomp / mso / adapters / vnfrest / DeleteVfModuleRequest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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.openecomp.mso.adapters.vnfrest;
22
23
24 import org.openecomp.mso.entity.MsoRequest;
25
26 import javax.xml.bind.annotation.XmlRootElement;
27 import org.jboss.resteasy.annotations.providers.NoJackson;
28 import org.codehaus.jackson.map.annotate.JsonRootName;
29
30 @JsonRootName("deleteVfModuleRequest")
31 @XmlRootElement(name = "deleteVfModuleRequest")
32 @NoJackson
33 public class DeleteVfModuleRequest extends VfRequestCommon {
34         private String cloudSiteId;
35         private String tenantId;
36         private String vnfId;
37         private String vfModuleId;
38         private String vfModuleStackId;
39
40         private MsoRequest msoRequest = new MsoRequest();
41
42         public DeleteVfModuleRequest() {
43                 super();
44         }
45
46         public String getCloudSiteId() {
47                 return cloudSiteId;
48         }
49
50         public void setCloudSiteId(String cloudSiteId) {
51                 this.cloudSiteId = cloudSiteId;
52         }
53
54         public String getTenantId() {
55                 return tenantId;
56         }
57
58         public void setTenantId(String tenantId) {
59                 this.tenantId = tenantId;
60         }
61
62         public String getVnfId() {
63                 return vnfId;
64         }
65
66         public void setVnfId(String vnfId) {
67                 this.vnfId = vnfId;
68         }
69
70         public String getVfModuleId() {
71                 return vfModuleId;
72         }
73
74         public void setVfModuleId(String vfModuleId) {
75                 this.vfModuleId = vfModuleId;
76         }
77
78         public String getVfModuleStackId() {
79                 return vfModuleStackId;
80         }
81
82         public void setVfModuleStackId(String vfModuleStackId) {
83                 this.vfModuleStackId = vfModuleStackId;
84         }
85
86         public MsoRequest getMsoRequest() {
87                 return msoRequest;
88         }
89
90         public void setMsoRequest(MsoRequest msoRequest) {
91                 this.msoRequest = msoRequest;
92         }
93 }