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