Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / tenantrest / CreateTenantResponse.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.tenantrest;
22
23
24
25 import java.io.Serializable;
26 import javax.xml.bind.annotation.XmlRootElement;
27
28 @XmlRootElement(name = "createTenantResponse")
29 public class CreateTenantResponse implements Serializable {
30     private static final long serialVersionUID = -456155026754759682L;
31     private String cloudSiteId;
32     private String tenantId;
33     private Boolean tenantCreated;
34     private TenantRollback tenantRollback = new TenantRollback();
35
36     public CreateTenantResponse() {}
37
38     public CreateTenantResponse(String cloudSiteId, String tenantId, Boolean tenantCreated,
39             TenantRollback tenantRollback) {
40         this.cloudSiteId = cloudSiteId;
41         this.tenantId = tenantId;
42         this.tenantCreated = tenantCreated;
43         this.tenantRollback = tenantRollback;
44     }
45
46     public String getCloudSiteId() {
47         return cloudSiteId;
48     }
49
50     public void setCloudSiteId(String cloudSiteId) {
51         this.cloudSiteId = cloudSiteId;
52     }
53
54     public String getTenantId() {
55         return tenantId;
56     }
57
58     public void setTenantId(String tenantId) {
59         this.tenantId = tenantId;
60     }
61
62     public Boolean getTenantCreated() {
63         return tenantCreated;
64     }
65
66     public void setTenantCreated(Boolean tenantCreated) {
67         this.tenantCreated = tenantCreated;
68     }
69
70     public TenantRollback getTenantRollback() {
71         return tenantRollback;
72     }
73
74     public void setTenantRollback(TenantRollback tenantRollback) {
75         this.tenantRollback = tenantRollback;
76     }
77
78     @Override
79     public String toString() {
80         return "CreateTenantResponse [cloudSiteId=" + cloudSiteId + ", tenantId=" + tenantId + ", tenantCreated="
81                 + tenantCreated + ", tenantRollback=" + tenantRollback.toString() + "]";
82     }
83 }