7c3669d7d78f8ed00edebf0c28431027a7fdb9ca
[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  * Modifications Copyright (C) 2018 IBM.
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.adapters.nwrest;
24
25
26
27 import javax.xml.bind.annotation.XmlRootElement;
28
29 import org.onap.so.entity.MsoRequest;
30
31 import com.fasterxml.jackson.annotation.JsonRootName;
32
33
34 @JsonRootName("deleteNetworkRequest")
35 @XmlRootElement(name = "deleteNetworkRequest")
36 public class DeleteNetworkRequest extends NetworkRequestCommon {
37
38         /**
39          * 
40          */
41         private static final long serialVersionUID = -2445072708572065058L;
42         private String cloudSiteId;
43         private String tenantId;
44         private String networkId;
45         private String networkStackId;
46         private String networkType;
47         private String modelCustomizationUuid;
48         private MsoRequest msoRequest = new MsoRequest();
49
50         public DeleteNetworkRequest() {
51                 //empty default constructor
52         }
53
54         public String getCloudSiteId() {
55                 return cloudSiteId;
56         }
57
58         public void setCloudSiteId(String cloudSiteId) {
59                 this.cloudSiteId = cloudSiteId;
60         }
61
62         public String getTenantId() {
63                 return tenantId;
64         }
65
66         public void setTenantId(String tenantId) {
67                 this.tenantId = tenantId;
68         }
69
70         public String getNetworkId() {
71                 return networkId;
72         }
73
74         public void setNetworkId(String networkId) {
75                 this.networkId = networkId;
76         }
77
78         public String getNetworkStackId() {
79                 return networkStackId;
80         }
81
82         public void setNetworkStackId(String networkStackId) {
83                 this.networkStackId = networkStackId;
84         }
85
86         public String getNetworkType() {
87                 return networkType;
88         }
89
90         public void setNetworkType(String networkType) {
91                 this.networkType = networkType;
92         }
93
94         public String getModelCustomizationUuid() {
95                 return this.modelCustomizationUuid;
96         }
97
98         public void setModelCustomizationUuid(String modelCustomizationUuid) {
99                 this.modelCustomizationUuid = modelCustomizationUuid;
100         }
101
102         public MsoRequest getMsoRequest() {
103                 return msoRequest;
104         }
105
106         public void setMsoRequest(MsoRequest msoRequest) {
107                 this.msoRequest = msoRequest;
108         }
109 }