[MSO-8] Update the maven dependency
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / vnfbeans / VfModuleModelNames.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * OPENECOMP - MSO
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 java.util.ArrayList;
33 import java.util.List;
34 import javax.xml.bind.annotation.XmlAccessType;
35 import javax.xml.bind.annotation.XmlAccessorType;
36 import javax.xml.bind.annotation.XmlElement;
37 import javax.xml.bind.annotation.XmlRootElement;
38 import javax.xml.bind.annotation.XmlType;
39
40
41 /**
42  * <p>Java class for anonymous complex type.
43  * 
44  * <p>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 ref="{http://org.openecomp/mso/infra/vnf-request/v1}vf-module-model-name" maxOccurs="unbounded" minOccurs="0"/>
52  *       &lt;/sequence>
53  *     &lt;/restriction>
54  *   &lt;/complexContent>
55  * &lt;/complexType>
56  * </pre>
57  * 
58  * 
59  */
60 @XmlAccessorType(XmlAccessType.FIELD)
61 @XmlType(name = "", propOrder = {
62     "vfModuleModelName"
63 })
64 @XmlRootElement(name = "vf-module-model-names")
65 public class VfModuleModelNames {
66
67     @XmlElement(name = "vf-module-model-name")
68     protected List<VfModuleModelName> vfModuleModelName;
69
70     /**
71      * Gets the value of the vfModuleModelName property.
72      * 
73      * <p>
74      * This accessor method returns a reference to the live list,
75      * not a snapshot. Therefore any modification you make to the
76      * returned list will be present inside the JAXB object.
77      * This is why there is not a <CODE>set</CODE> method for the vnfType property.
78      * 
79      * <p>
80      * For example, to add a new item, do as follows:
81      * <pre>
82      *    getVfModuleModelName().add(newItem);
83      * </pre>
84      * 
85      * 
86      * <p>
87      * Objects of the following type(s) are allowed in the list
88      * {@link VfModuleModelName }
89      * 
90      * 
91      */
92     public List<VfModuleModelName> getVfModuleModelName() {
93         if (vfModuleModelName == null) {
94             vfModuleModelName = new ArrayList<VfModuleModelName>();
95         }
96         return this.vfModuleModelName;
97     }
98
99 }