Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / volumebeans / VolumeOutputs.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 //
22 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 
23 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
24 // Any modifications to this file will be lost upon recompilation of the source schema. 
25 // Generated on: 2015.09.03 at 02:02:13 PM EDT 
26 //
27
28
29 package org.openecomp.mso.apihandlerinfra.volumebeans;
30
31
32
33 import javax.xml.bind.annotation.XmlAccessType;
34 import javax.xml.bind.annotation.XmlAccessorType;
35 import javax.xml.bind.annotation.XmlElement;
36 import javax.xml.bind.annotation.XmlRootElement;
37 import javax.xml.bind.annotation.XmlType;
38
39
40 /**
41  * <p>Java class for anonymous complex type.
42  * 
43  * <p>The following schema fragment specifies the expected content contained within this class.
44  * 
45  * <pre>
46  * &lt;complexType>
47  *   &lt;complexContent>
48  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
49  *       &lt;sequence>
50  *         &lt;element name="vnf-type" type="{http://www.w3.org/2001/XMLSchema}string"/>
51  *         &lt;element name="service-type" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
52  *         &lt;element name="aic-node-clli" type="{http://www.w3.org/2001/XMLSchema}string"/>
53  *         &lt;element name="tenant-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
54  *         &lt;element name="volume-group-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
55  *         &lt;element name="volume-group-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
56  *       &lt;/sequence>
57  *     &lt;/restriction>
58  *   &lt;/complexContent>
59  * &lt;/complexType>
60  * </pre>
61  * 
62  * 
63  */
64 @XmlAccessorType(XmlAccessType.FIELD)
65 @XmlType(name = "", propOrder = {
66     "vnfType",
67     "serviceType",
68     "aicNodeClli",
69     "tenantId",
70     "volumeGroupName",
71     "volumeGroupId"
72 })
73 @XmlRootElement(name = "volume-outputs")
74 public class VolumeOutputs {
75     @XmlElement(name = "vnf-type", required = true)
76     protected String vnfType;
77     @XmlElement(name = "service-type")
78     protected String serviceType;
79     @XmlElement(name = "aic-node-clli", required = true)
80     protected String aicNodeClli;
81     @XmlElement(name = "tenant-id", required = true)
82     protected String tenantId;
83     @XmlElement(name = "volume-group-name")
84     protected String volumeGroupName;
85     @XmlElement(name = "volume-group-id")
86     protected String volumeGroupId;
87
88     /**
89      * Gets the value of the volumeId property.
90      * 
91      * @return
92      *     possible object is
93      *     {@link String }
94      *     
95      */
96     public String getVolumeGroupId() {
97         return volumeGroupId;
98     }
99
100     /**
101      * Sets the value of the volumeGroupId property.
102      * 
103      * @param value
104      *     allowed object is
105      *     {@link String }
106      *     
107      */
108     public void setVolumeGroupId(String value) {
109         this.volumeGroupId = value;
110     }
111
112     /**
113      * Gets the value of the volumeGroupName property.
114      * 
115      * @return
116      *     possible object is
117      *     {@link String }
118      *     
119      */
120     public String getVolumeGroupName() {
121         return volumeGroupName;
122     }
123
124     /**
125      * Sets the value of the volumeGroupName property.
126      * 
127      * @param value
128      *     allowed object is
129      *     {@link String }
130      *     
131      */
132     public void setVolumeGroupName(String value) {
133         this.volumeGroupName = value;
134     }
135
136     /**
137      * Gets the value of the vnfType property.
138      * 
139      * @return
140      *     possible object is
141      *     {@link String }
142      *     
143      */
144     public String getVnfType() {
145         return vnfType;
146     }
147
148     /**
149      * Sets the value of the vnfType property.
150      * 
151      * @param value
152      *     allowed object is
153      *     {@link String }
154      *     
155      */
156     public void setVnfType(String value) {
157         this.vnfType = value;
158     }
159
160     /**
161      * Gets the value of the serviceType property.
162      * 
163      * @return
164      *     possible object is
165      *     {@link String }
166      *     
167      */
168     public String getServiceType() {
169         return serviceType;
170     }
171
172     /**
173      * Sets the value of the serviceType property.
174      * 
175      * @param value
176      *     allowed object is
177      *     {@link String }
178      *     
179      */
180     public void setServiceType(String value) {
181         this.serviceType = value;
182     }
183
184     /**
185      * Gets the value of the aicNodeClli property.
186      * 
187      * @return
188      *     possible object is
189      *     {@link String }
190      *     
191      */
192     public String getAicNodeClli() {
193         return aicNodeClli;
194     }
195
196     /**
197      * Sets the value of the aicNodeClli property.
198      * 
199      * @param value
200      *     allowed object is
201      *     {@link String }
202      *     
203      */
204     public void setAicNodeClli(String value) {
205         this.aicNodeClli = value;
206     }
207
208     /**
209      * Gets the value of the tenantId property.
210      * 
211      * @return
212      *     possible object is
213      *     {@link String }
214      *     
215      */
216     public String getTenantId() {
217         return tenantId;
218     }
219
220     /**
221      * Sets the value of the tenantId property.
222      * 
223      * @param value
224      *     allowed object is
225      *     {@link String }
226      *     
227      */
228     public void setTenantId(String value) {
229         this.tenantId = value;
230     }
231
232    
233 }