c9876487d6daf89e0c96e63603b5e5cfe56423a3
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / openecomp / mso / apihandlerinfra / vnfbeans / VfModuleModelName.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
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="model-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
51  *         &lt;element name="model-version" type="{http://www.w3.org/2001/XMLSchema}string"/>
52  *         &lt;element name="model-invariant-uuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
53  *         &lt;element name="is-base" type="{http://www.w3.org/2001/XMLSchema}Boolean"/>
54  *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
55  *         &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
56  *         &lt;element name="asdc-service-model-version" type="{http://www.w3.org/2001/XMLSchema}string"/>
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     "modelName",
68     "modelVersion",
69     "modelInvariantUuid",
70     "isBase",
71     "id",
72     "description",
73     "asdcServiceModelVersion"
74 })
75 @XmlRootElement(name = "vf-module-model-name")
76 public class VfModuleModelName {
77
78     @XmlElement(name="model-name", required = true)
79     protected String modelName;
80     @XmlElement(name="model-version", required = true)
81     protected String modelVersion;
82     @XmlElement(name="model-invariant-uuid", required = true)
83     protected String modelInvariantUuid;
84     @XmlElement(name="is-base", required = true)
85     protected Boolean isBase;
86     @XmlElement(name="id", required = true)
87     protected String id;
88     @XmlElement(name="description", required = true)
89     protected String description;
90     @XmlElement(name="asdc-service-model-version", required = true)
91     protected String asdcServiceModelVersion;
92
93     /**
94      * Gets the value of the modelName property.
95      * 
96      * @return
97      *     possible object is
98      *     {@link String }
99      *     
100      */
101     public String getModelName() {
102         return modelName;
103     }
104
105     /**
106      * Sets the value of the modelName property.
107      * 
108      * @param value
109      *     allowed object is
110      *     {@link String }
111      *     
112      */
113     public void setModelName(String value) {
114         this.modelName = value;
115     }
116     
117     /**
118      * Gets the value of the modelVersion property.
119      * 
120      * @return
121      *     possible object is
122      *     {@link String }
123      *     
124      */
125     public String getModelVersion() {
126         return modelVersion;
127     }
128
129     /**
130      * Sets the value of the modelVersion property.
131      * 
132      * @param value
133      *     allowed object is
134      *     {@link String }
135      *     
136      */
137     public void setModelVersion(String value) {
138         this.modelVersion = value;
139     }
140     
141     /**
142      * Gets the value of the modelInvariantUuid property.
143      * 
144      * @return
145      *     possible object is
146      *     {@link String }
147      *     
148      */
149     public String getModelInvariantUuid() {
150         return modelInvariantUuid;
151     }
152
153     /**
154      * Sets the value of the modelInvariantUuid property.
155      * 
156      * @param value
157      *     allowed object is
158      *     {@link String }
159      *     
160      */
161     public void setModelInvariantUuid(String value) {
162         this.modelInvariantUuid = value;
163     }
164     
165     /**
166      * Gets the value of the isBase property.
167      * 
168      * @return
169      *     possible object is
170      *     {@link Boolean }
171      *     
172      */
173     public Boolean getIsBase() {
174         return isBase;
175     }
176
177     /**
178      * Sets the value of the isBase property.
179      * 
180      * @param value
181      *     allowed object is
182      *     {@link Boolean }
183      *     
184      */
185     public void setIsBase(Boolean value) {
186         this.isBase = value;
187     }
188
189     /**
190      * Gets the value of the id property.
191      * 
192      * @return
193      *     possible object is
194      *     {@link String }
195      *     
196      */
197     public String getId() {
198         return id;
199     }
200
201     /**
202      * Sets the value of the id property.
203      * 
204      * @param value
205      *     allowed object is
206      *     {@link String }
207      *     
208      */
209     public void setId(String value) {
210         this.id = value;
211     }
212
213     /**
214      * Gets the value of the description property.
215      * 
216      * @return
217      *     possible object is
218      *     {@link String }
219      *     
220      */
221     public String getDescription() {
222         return description;
223     }
224
225     /**
226      * Sets the value of the description property.
227      * 
228      * @param value
229      *     allowed object is
230      *     {@link String }
231      *     
232      */
233     public void setDescription(String value) {
234         this.description = value;
235     }
236     
237     /**
238      * Gets the value of the asdcServiceModelVersion property.
239      * 
240      * @return
241      *     possible object is
242      *     {@link String }
243      *     
244      */
245     public String getAsdcServiceModelVersion() {
246         return asdcServiceModelVersion;
247     }
248
249     /**
250      * Sets the value of the asdcServiceModelVersion property.
251      * 
252      * @param value
253      *     allowed object is
254      *     {@link String }
255      *     
256      */
257     public void setAsdcServiceModelVersion(String value) {
258         this.asdcServiceModelVersion = value;
259     }
260
261 }