Replaced all tabs with spaces in java and pom.xml
[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 import org.onap.so.entity.MsoRequest;
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         // empty default constructor
50     }
51
52     public String getCloudSiteId() {
53         return cloudSiteId;
54     }
55
56     public void setCloudSiteId(String cloudSiteId) {
57         this.cloudSiteId = cloudSiteId;
58     }
59
60     public String getTenantId() {
61         return tenantId;
62     }
63
64     public void setTenantId(String tenantId) {
65         this.tenantId = tenantId;
66     }
67
68     public String getNetworkId() {
69         return networkId;
70     }
71
72     public void setNetworkId(String networkId) {
73         this.networkId = networkId;
74     }
75
76     public String getNetworkStackId() {
77         return networkStackId;
78     }
79
80     public void setNetworkStackId(String networkStackId) {
81         this.networkStackId = networkStackId;
82     }
83
84     public String getNetworkType() {
85         return networkType;
86     }
87
88     public void setNetworkType(String networkType) {
89         this.networkType = networkType;
90     }
91
92     public String getModelCustomizationUuid() {
93         return this.modelCustomizationUuid;
94     }
95
96     public void setModelCustomizationUuid(String modelCustomizationUuid) {
97         this.modelCustomizationUuid = modelCustomizationUuid;
98     }
99
100     public MsoRequest getMsoRequest() {
101         return msoRequest;
102     }
103
104     public void setMsoRequest(MsoRequest msoRequest) {
105         this.msoRequest = msoRequest;
106     }
107 }