Containerization feature of SO
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / 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.onap.so.adapters.nwrest;
22
23
24
25 import javax.xml.bind.annotation.XmlRootElement;
26
27 import org.onap.so.entity.MsoRequest;
28
29 import com.fasterxml.jackson.annotation.JsonRootName;
30
31
32 @JsonRootName("deleteNetworkRequest")
33 @XmlRootElement(name = "deleteNetworkRequest")
34 public class DeleteNetworkRequest extends NetworkRequestCommon {
35
36         /**
37          * 
38          */
39         private static final long serialVersionUID = -2445072708572065058L;
40         private String cloudSiteId;
41         private String tenantId;
42         private String networkId;
43         private String networkStackId;
44         private String networkType;
45         private String modelCustomizationUuid;
46         private MsoRequest msoRequest = new MsoRequest();
47
48         public DeleteNetworkRequest() {}
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 getTenantId() {
59                 return tenantId;
60         }
61
62         public void setTenantId(String tenantId) {
63                 this.tenantId = tenantId;
64         }
65
66         public String getNetworkId() {
67                 return networkId;
68         }
69
70         public void setNetworkId(String networkId) {
71                 this.networkId = networkId;
72         }
73
74         public String getNetworkStackId() {
75                 return networkStackId;
76         }
77
78         public void setNetworkStackId(String networkStackId) {
79                 this.networkStackId = networkStackId;
80         }
81
82         public String getNetworkType() {
83                 return networkType;
84         }
85
86         public void setNetworkType(String networkType) {
87                 this.networkType = networkType;
88         }
89
90         public String getModelCustomizationUuid() {
91                 return this.modelCustomizationUuid;
92         }
93
94         public void setModelCustomizationUuid(String modelCustomizationUuid) {
95                 this.modelCustomizationUuid = modelCustomizationUuid;
96         }
97
98         public MsoRequest getMsoRequest() {
99                 return msoRequest;
100         }
101
102         public void setMsoRequest(MsoRequest msoRequest) {
103                 this.msoRequest = msoRequest;
104         }
105 }