Change the header to SO
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / vnfbeans / VnfOutputs.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.vnfbeans;
30
31
32 import javax.xml.bind.annotation.XmlAccessType;
33 import javax.xml.bind.annotation.XmlAccessorType;
34 import javax.xml.bind.annotation.XmlElement;
35 import javax.xml.bind.annotation.XmlRootElement;
36 import javax.xml.bind.annotation.XmlType;
37
38
39 /**
40  * <p>Java class for anonymous complex type.
41  * 
42  * <p>The following schema fragment specifies the expected content contained within this class.
43  * 
44  * <pre>
45  * &lt;complexType>
46  *   &lt;complexContent>
47  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
48  *       &lt;sequence>
49  *         &lt;element name="vnf-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
50  *         &lt;element name="vf-module-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
51  *         &lt;element name="vnf-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
52  *         &lt;element name="vf-module-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
53  *         &lt;element name="aic-node-clli" type="{http://www.w3.org/2001/XMLSchema}string"/>
54  *         &lt;element name="tenant-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
55  *         &lt;element name="volume-group-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
56  *         &lt;element name="volume-group-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
57  *       &lt;/sequence>
58  *     &lt;/restriction>
59  *   &lt;/complexContent>
60  * &lt;/complexType>
61  * </pre>
62  * 
63  * 
64  */
65 @XmlAccessorType(XmlAccessType.FIELD)
66 @XmlType(name = "", propOrder = {
67     "vnfId",
68     "vfModuleId",
69     "vnfName",
70     "vfModuleName",
71     "aicNodeClli",
72     "tenantId",
73     "volumeGroupName",
74     "volumeGroupId"
75 })
76 @XmlRootElement(name = "vnf-outputs")
77 public class VnfOutputs {
78
79     @XmlElement(name = "vnf-id", required = true)
80     protected String vnfId;
81     @XmlElement(name = "vf-module-id")
82     protected String vfModuleId;
83     @XmlElement(name = "vnf-name", required = true)
84     protected String vnfName;
85     @XmlElement(name = "vf-module-name", required = true)
86     protected String vfModuleName;
87     @XmlElement(name = "aic-node-clli", required = true)
88     protected String aicNodeClli;
89     @XmlElement(name = "tenant-id", required = true)
90     protected String tenantId;
91     @XmlElement(name = "volume-group-name")
92     protected String volumeGroupName;
93     @XmlElement(name = "volume-group-id")
94     protected String volumeGroupId;
95
96     /**
97      * Gets the value of the vnfId property.
98      * 
99      * @return
100      *     possible object is
101      *     {@link String }
102      *     
103      */
104     public String getVnfId() {
105         return vnfId;
106     }
107
108     /**
109      * Sets the value of the vnfId property.
110      * 
111      * @param value
112      *     allowed object is
113      *     {@link String }
114      *     
115      */
116     public void setVnfId(String value) {
117         this.vnfId = value;
118     }
119     
120     /**
121      * Gets the value of the vfModuleId property.
122      * 
123      * @return
124      *     possible object is
125      *     {@link String }
126      *     
127      */
128     public String getVfModuleId() {
129         return vfModuleId;
130     }
131
132     /**
133      * Sets the value of the vfModuleId property.
134      * 
135      * @param value
136      *     allowed object is
137      *     {@link String }
138      *     
139      */
140     public void setVfModuleId(String value) {
141         this.vfModuleId = value;
142     }
143
144
145
146     /**
147      * Gets the value of the vnfName property.
148      * 
149      * @return
150      *     possible object is
151      *     {@link String }
152      *     
153      */
154     public String getVnfName() {
155         return vnfName;
156     }
157
158     /**
159      * Sets the value of the vnfName property.
160      * 
161      * @param value
162      *     allowed object is
163      *     {@link String }
164      *     
165      */
166     public void setVnfName(String value) {
167         this.vnfName = value;
168     }
169     
170     /**
171      * Gets the value of the vfModuleName property.
172      * 
173      * @return
174      *     possible object is
175      *     {@link String }
176      *     
177      */
178     public String getVfModuleName() {
179         return vfModuleName;
180     }
181
182     /**
183      * Sets the value of the vfModuleName property.
184      * 
185      * @param value
186      *     allowed object is
187      *     {@link String }
188      *     
189      */
190     public void setVfModuleName(String value) {
191         this.vfModuleName = value;
192     }
193
194
195     /**
196      * Gets the value of the aicNodeClli property.
197      * 
198      * @return
199      *     possible object is
200      *     {@link String }
201      *     
202      */
203     public String getAicNodeClli() {
204         return aicNodeClli;
205     }
206
207     /**
208      * Sets the value of the aicNodeClli property.
209      * 
210      * @param value
211      *     allowed object is
212      *     {@link String }
213      *     
214      */
215     public void setAicNodeClli(String value) {
216         this.aicNodeClli = value;
217     }
218
219     /**
220      * Gets the value of the tenantId property.
221      * 
222      * @return
223      *     possible object is
224      *     {@link String }
225      *     
226      */
227     public String getTenantId() {
228         return tenantId;
229     }
230
231     /**
232      * Sets the value of the tenantId property.
233      * 
234      * @param value
235      *     allowed object is
236      *     {@link String }
237      *     
238      */
239     public void setTenantId(String value) {
240         this.tenantId = value;
241     }
242     
243     /**
244      * Gets the value of the volumeGroupName property.
245      * 
246      * @return
247      *     possible object is
248      *     {@link String }
249      *     
250      */
251     public String getVolumeGroupName() {
252         return volumeGroupName;
253     }
254
255     /**
256      * Sets the value of the volumeGroupName property.
257      * 
258      * @param value
259      *     allowed object is
260      *     {@link String }
261      *     
262      */
263     public void setVolumeGroupName(String value) {
264         this.volumeGroupName = value;
265     }
266     
267     /**
268      * Gets the value of the volumeGroupId property.
269      * 
270      * @return
271      *     possible object is
272      *     {@link String }
273      *     
274      */
275     public String getVolumeGroupId() {
276         return volumeGroupId;
277     }
278
279     /**
280      * Sets the value of the volumeGroupId property.
281      * 
282      * @param value
283      *     allowed object is
284      *     {@link String }
285      *     
286      */
287     public void setVolumeGroupId(String value) {
288         this.volumeGroupId = value;
289     }
290
291 }