Change the header to SO
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / openecomp / mso / adapters / nwrest / DeleteNetworkRequest.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.openecomp.mso.adapters.nwrest;
22
23
24
25 import org.openecomp.mso.entity.MsoRequest;
26
27 import javax.xml.bind.annotation.XmlRootElement;
28
29 import org.jboss.resteasy.annotations.providers.NoJackson;
30 import org.codehaus.jackson.map.annotate.JsonRootName;
31
32 @JsonRootName("deleteNetworkRequest")
33 @XmlRootElement(name = "deleteNetworkRequest")
34 @NoJackson
35 public class DeleteNetworkRequest extends NetworkRequestCommon {
36
37         private String cloudSiteId;
38         private String tenantId;
39         private String networkId;
40         private String networkStackId;
41         private String networkType;
42         private String modelCustomizationUuid;
43         private MsoRequest msoRequest = new MsoRequest();
44
45         public DeleteNetworkRequest() {}
46
47         public String getCloudSiteId() {
48                 return cloudSiteId;
49         }
50
51         public void setCloudSiteId(String cloudSiteId) {
52                 this.cloudSiteId = cloudSiteId;
53         }
54
55         public String getTenantId() {
56                 return tenantId;
57         }
58
59         public void setTenantId(String tenantId) {
60                 this.tenantId = tenantId;
61         }
62
63         public String getNetworkId() {
64                 return networkId;
65         }
66
67         public void setNetworkId(String networkId) {
68                 this.networkId = networkId;
69         }
70
71         public String getNetworkStackId() {
72                 return networkStackId;
73         }
74
75         public void setNetworkStackId(String networkStackId) {
76                 this.networkStackId = networkStackId;
77         }
78
79         public String getNetworkType() {
80                 return networkType;
81         }
82
83         public void setNetworkType(String networkType) {
84                 this.networkType = networkType;
85         }
86
87         public String getModelCustomizationUuid() {
88                 return this.modelCustomizationUuid;
89         }
90
91         public void setModelCustomizationUuid(String modelCustomizationUuid) {
92                 this.modelCustomizationUuid = modelCustomizationUuid;
93         }
94
95         public MsoRequest getMsoRequest() {
96                 return msoRequest;
97         }
98
99         public void setMsoRequest(MsoRequest msoRequest) {
100                 this.msoRequest = msoRequest;
101         }
102 }