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