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