195628167ed7a966f4d0453b18cedbce5eff4177
[so.git] / adapters / mso-adapters-rest-interface / src / main / java / org / onap / so / adapters / tenantrest / TenantRollback.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 javax.xml.bind.annotation.XmlRootElement;
26
27 import org.onap.so.entity.MsoRequest;
28
29 /**
30  * Javabean representing the rollback criteria following a "Create Tenant"
31  * operation.  This structure can be passed back to the "Rollback Tenant"
32  * operation to undo the effects of the create.
33  *
34  *
35  */
36
37 @XmlRootElement(name = "rollbackTenantRequest")
38 public class TenantRollback extends TenantRequestCommon {
39         private static final long serialVersionUID = -4540810517355635993L;
40         private String tenantId;
41         private String cloudId;
42         private boolean tenantCreated = false;
43         private MsoRequest msoRequest;
44
45         public TenantRollback() {}
46         
47         public String getTenantId() {
48                 return tenantId;
49         }
50         public void setTenantId(String tenantId) {
51                 this.tenantId = tenantId;
52         }
53
54         public String getCloudId() {
55                 return cloudId;
56         }
57         public void setCloudId(String cloudId) {
58                 this.cloudId = cloudId;
59         }
60
61         public boolean getTenantCreated() {
62                 return tenantCreated;
63         }
64         public void setTenantCreated(boolean tenantCreated) {
65                 this.tenantCreated = tenantCreated;
66         }
67
68         public MsoRequest getMsoRequest() {
69                 return msoRequest;
70         }
71         public void setMsoRequest (MsoRequest msoRequest) {
72                 this.msoRequest = msoRequest;
73         }
74
75         @Override
76     public String toString() {
77                 return "VnfRollback: cloud=" + cloudId + ", tenant=" + tenantId +
78                                 ", tenantCreated=" + tenantCreated;
79         }
80 }