1bf99b13622ff8ca509d535ca305a3ee84ceaa57
[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
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>
42  * Java class for anonymous complex type.
43  * 
44  * <p>
45  * The following schema fragment specifies the expected content contained within this class.
46  * 
47  * <pre>
48  * &lt;complexType>
49  *   &lt;complexContent>
50  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
51  *       &lt;sequence>
52  *         &lt;element name="model-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
53  *         &lt;element name="model-version" type="{http://www.w3.org/2001/XMLSchema}string"/>
54  *         &lt;element name="model-invariant-uuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
55  *         &lt;element name="is-base" type="{http://www.w3.org/2001/XMLSchema}Boolean"/>
56  *         &lt;element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
57  *         &lt;element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
58  *         &lt;element name="asdc-service-model-version" type="{http://www.w3.org/2001/XMLSchema}string"/>
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 = {"modelName", "modelVersion", "modelInvariantUuid", "isBase", "id", "description",
69         "asdcServiceModelVersion"})
70 @XmlRootElement(name = "vf-module-model-name")
71 public class VfModuleModelName {
72
73     @XmlElement(name = "model-name", required = true)
74     protected String modelName;
75     @XmlElement(name = "model-version", required = true)
76     protected String modelVersion;
77     @XmlElement(name = "model-invariant-uuid", required = true)
78     protected String modelInvariantUuid;
79     @XmlElement(name = "is-base", required = true)
80     protected Boolean isBase;
81     @XmlElement(name = "id", required = true)
82     protected String id;
83     @XmlElement(name = "description", required = true)
84     protected String description;
85     @XmlElement(name = "asdc-service-model-version", required = true)
86     protected String asdcServiceModelVersion;
87
88     /**
89      * Gets the value of the modelName property.
90      * 
91      * @return possible object is {@link String }
92      * 
93      */
94     public String getModelName() {
95         return modelName;
96     }
97
98     /**
99      * Sets the value of the modelName property.
100      * 
101      * @param value allowed object is {@link String }
102      * 
103      */
104     public void setModelName(String value) {
105         this.modelName = value;
106     }
107
108     /**
109      * Gets the value of the modelVersion property.
110      * 
111      * @return possible object is {@link String }
112      * 
113      */
114     public String getModelVersion() {
115         return modelVersion;
116     }
117
118     /**
119      * Sets the value of the modelVersion property.
120      * 
121      * @param value allowed object is {@link String }
122      * 
123      */
124     public void setModelVersion(String value) {
125         this.modelVersion = value;
126     }
127
128     /**
129      * Gets the value of the modelInvariantUuid property.
130      * 
131      * @return possible object is {@link String }
132      * 
133      */
134     public String getModelInvariantUuid() {
135         return modelInvariantUuid;
136     }
137
138     /**
139      * Sets the value of the modelInvariantUuid property.
140      * 
141      * @param value allowed object is {@link String }
142      * 
143      */
144     public void setModelInvariantUuid(String value) {
145         this.modelInvariantUuid = value;
146     }
147
148     /**
149      * Gets the value of the isBase property.
150      * 
151      * @return possible object is {@link Boolean }
152      * 
153      */
154     public Boolean getIsBase() {
155         return isBase;
156     }
157
158     /**
159      * Sets the value of the isBase property.
160      * 
161      * @param value allowed object is {@link Boolean }
162      * 
163      */
164     public void setIsBase(Boolean value) {
165         this.isBase = value;
166     }
167
168     /**
169      * Gets the value of the id property.
170      * 
171      * @return possible object is {@link String }
172      * 
173      */
174     public String getId() {
175         return id;
176     }
177
178     /**
179      * Sets the value of the id property.
180      * 
181      * @param value allowed object is {@link String }
182      * 
183      */
184     public void setId(String value) {
185         this.id = value;
186     }
187
188     /**
189      * Gets the value of the description property.
190      * 
191      * @return possible object is {@link String }
192      * 
193      */
194     public String getDescription() {
195         return description;
196     }
197
198     /**
199      * Sets the value of the description property.
200      * 
201      * @param value allowed object is {@link String }
202      * 
203      */
204     public void setDescription(String value) {
205         this.description = value;
206     }
207
208     /**
209      * Gets the value of the asdcServiceModelVersion property.
210      * 
211      * @return possible object is {@link String }
212      * 
213      */
214     public String getAsdcServiceModelVersion() {
215         return asdcServiceModelVersion;
216     }
217
218     /**
219      * Sets the value of the asdcServiceModelVersion property.
220      * 
221      * @param value allowed object is {@link String }
222      * 
223      */
224     public void setAsdcServiceModelVersion(String value) {
225         this.asdcServiceModelVersion = value;
226     }
227
228 }