Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-openstack-adapters / src / main / java / org / onap / so / adapters / vnf / async / client / VnfRollback.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.vnf.async.client;
22
23 import javax.xml.bind.annotation.XmlAccessType;
24 import javax.xml.bind.annotation.XmlAccessorType;
25 import javax.xml.bind.annotation.XmlType;
26
27
28 /**
29  * <p>
30  * Java class for vnfRollback complex type.
31  * 
32  * <p>
33  * The following schema fragment specifies the expected content contained within this class.
34  * 
35  * <pre>
36  * &lt;complexType name="vnfRollback">
37  *   &lt;complexContent>
38  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
39  *       &lt;sequence>
40  *         &lt;element name="cloudSiteId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
41  *         &lt;element name="msoRequest" type="{http://org.onap.so/vnfNotify}msoRequest" minOccurs="0"/>
42  *         &lt;element name="tenantCreated" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
43  *         &lt;element name="tenantId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
44  *         &lt;element name="vnfCreated" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
45  *         &lt;element name="vnfId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
46  *       &lt;/sequence>
47  *     &lt;/restriction>
48  *   &lt;/complexContent>
49  * &lt;/complexType>
50  * </pre>
51  * 
52  * 
53  */
54 @XmlAccessorType(XmlAccessType.FIELD)
55 @XmlType(name = "vnfRollback",
56         propOrder = {"cloudSiteId", "msoRequest", "tenantCreated", "tenantId", "vnfCreated", "vnfId"})
57 public class VnfRollback {
58
59     protected String cloudSiteId;
60     protected MsoRequest msoRequest;
61     protected boolean tenantCreated;
62     protected String tenantId;
63     protected boolean vnfCreated;
64     protected String vnfId;
65
66     /**
67      * Gets the value of the cloudSiteId property.
68      * 
69      * @return possible object is {@link String }
70      * 
71      */
72     public String getCloudSiteId() {
73         return cloudSiteId;
74     }
75
76     /**
77      * Sets the value of the cloudSiteId property.
78      * 
79      * @param value allowed object is {@link String }
80      * 
81      */
82     public void setCloudSiteId(String value) {
83         this.cloudSiteId = value;
84     }
85
86     /**
87      * Gets the value of the msoRequest property.
88      * 
89      * @return possible object is {@link MsoRequest }
90      * 
91      */
92     public MsoRequest getMsoRequest() {
93         return msoRequest;
94     }
95
96     /**
97      * Sets the value of the msoRequest property.
98      * 
99      * @param value allowed object is {@link MsoRequest }
100      * 
101      */
102     public void setMsoRequest(MsoRequest value) {
103         this.msoRequest = value;
104     }
105
106     /**
107      * Gets the value of the tenantCreated property.
108      * 
109      */
110     public boolean isTenantCreated() {
111         return tenantCreated;
112     }
113
114     /**
115      * Sets the value of the tenantCreated property.
116      * 
117      */
118     public void setTenantCreated(boolean value) {
119         this.tenantCreated = value;
120     }
121
122     /**
123      * Gets the value of the tenantId property.
124      * 
125      * @return possible object is {@link String }
126      * 
127      */
128     public String getTenantId() {
129         return tenantId;
130     }
131
132     /**
133      * Sets the value of the tenantId property.
134      * 
135      * @param value allowed object is {@link String }
136      * 
137      */
138     public void setTenantId(String value) {
139         this.tenantId = value;
140     }
141
142     /**
143      * Gets the value of the vnfCreated property.
144      * 
145      */
146     public boolean isVnfCreated() {
147         return vnfCreated;
148     }
149
150     /**
151      * Sets the value of the vnfCreated property.
152      * 
153      */
154     public void setVnfCreated(boolean value) {
155         this.vnfCreated = value;
156     }
157
158     /**
159      * Gets the value of the vnfId property.
160      * 
161      * @return possible object is {@link String }
162      * 
163      */
164     public String getVnfId() {
165         return vnfId;
166     }
167
168     /**
169      * Sets the value of the vnfId property.
170      * 
171      * @param value allowed object is {@link String }
172      * 
173      */
174     public void setVnfId(String value) {
175         this.vnfId = value;
176     }
177
178 }