2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
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
29 package org.onap.so.apihandlerinfra.vnfbeans;
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;
42 * Java class for anonymous complex type.
45 * The following schema fragment specifies the expected content contained within this class.
50 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
52 * <element name="model-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
53 * <element name="model-version" type="{http://www.w3.org/2001/XMLSchema}string"/>
54 * <element name="model-invariant-uuid" type="{http://www.w3.org/2001/XMLSchema}string"/>
55 * <element name="is-base" type="{http://www.w3.org/2001/XMLSchema}Boolean"/>
56 * <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
57 * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
58 * <element name="asdc-service-model-version" type="{http://www.w3.org/2001/XMLSchema}string"/>
61 * </complexContent>
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 {
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)
83 @XmlElement(name = "description", required = true)
84 protected String description;
85 @XmlElement(name = "asdc-service-model-version", required = true)
86 protected String asdcServiceModelVersion;
89 * Gets the value of the modelName property.
91 * @return possible object is {@link String }
94 public String getModelName() {
99 * Sets the value of the modelName property.
101 * @param value allowed object is {@link String }
104 public void setModelName(String value) {
105 this.modelName = value;
109 * Gets the value of the modelVersion property.
111 * @return possible object is {@link String }
114 public String getModelVersion() {
119 * Sets the value of the modelVersion property.
121 * @param value allowed object is {@link String }
124 public void setModelVersion(String value) {
125 this.modelVersion = value;
129 * Gets the value of the modelInvariantUuid property.
131 * @return possible object is {@link String }
134 public String getModelInvariantUuid() {
135 return modelInvariantUuid;
139 * Sets the value of the modelInvariantUuid property.
141 * @param value allowed object is {@link String }
144 public void setModelInvariantUuid(String value) {
145 this.modelInvariantUuid = value;
149 * Gets the value of the isBase property.
151 * @return possible object is {@link Boolean }
154 public Boolean getIsBase() {
159 * Sets the value of the isBase property.
161 * @param value allowed object is {@link Boolean }
164 public void setIsBase(Boolean value) {
169 * Gets the value of the id property.
171 * @return possible object is {@link String }
174 public String getId() {
179 * Sets the value of the id property.
181 * @param value allowed object is {@link String }
184 public void setId(String value) {
189 * Gets the value of the description property.
191 * @return possible object is {@link String }
194 public String getDescription() {
199 * Sets the value of the description property.
201 * @param value allowed object is {@link String }
204 public void setDescription(String value) {
205 this.description = value;
209 * Gets the value of the asdcServiceModelVersion property.
211 * @return possible object is {@link String }
214 public String getAsdcServiceModelVersion() {
215 return asdcServiceModelVersion;
219 * Sets the value of the asdcServiceModelVersion property.
221 * @param value allowed object is {@link String }
224 public void setAsdcServiceModelVersion(String value) {
225 this.asdcServiceModelVersion = value;