b2d521b0503554d9b94bb2d0fedc1e9c6c61f0ee
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / tenantrest / DeleteTenantRequest.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) 2017 AT&T Intellectual Property. All rights reserved.
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.tenantrest;
24
25
26
27 import javax.xml.bind.annotation.XmlRootElement;
28
29 import org.onap.so.entity.MsoRequest;
30
31 @XmlRootElement(name = "deleteTenantRequest")
32 public class DeleteTenantRequest extends TenantRequestCommon {
33
34         private String cloudSiteId;
35         private String tenantId;
36
37         private MsoRequest msoRequest = new MsoRequest();
38
39         public DeleteTenantRequest() {
40                 //empty constructor
41         }
42         
43         public String getCloudSiteId() {
44                 return cloudSiteId;
45         }
46
47         public void setCloudSiteId(String cloudSiteId) {
48                 this.cloudSiteId = cloudSiteId;
49         }
50
51         public String getTenantId() {
52                 return tenantId;
53         }
54
55         public void setTenantId(String tenantId) {
56                 this.tenantId = tenantId;
57         }
58
59         public MsoRequest getMsoRequest() {
60                 return msoRequest;
61         }
62
63         public void setMsoRequest(MsoRequest msoRequest) {
64                 this.msoRequest = msoRequest;
65         }
66 }