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;
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;
41 * Java class for anonymous complex type.
44 * The following schema fragment specifies the expected content contained within this class.
49 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
51 * <element name="vnf-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
52 * <element name="vf-module-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
53 * <element name="vnf-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
54 * <element name="vf-module-name" type="{http://www.w3.org/2001/XMLSchema}string"/>
55 * <element name="aic-node-clli" type="{http://www.w3.org/2001/XMLSchema}string"/>
56 * <element name="tenant-id" type="{http://www.w3.org/2001/XMLSchema}string"/>
57 * <element name="volume-group-name" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
58 * <element name="volume-group-id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
61 * </complexContent>
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 {
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;
91 * Gets the value of the vnfId property.
93 * @return possible object is {@link String }
96 public String getVnfId() {
101 * Sets the value of the vnfId property.
103 * @param value allowed object is {@link String }
106 public void setVnfId(String value) {
111 * Gets the value of the vfModuleId property.
113 * @return possible object is {@link String }
116 public String getVfModuleId() {
121 * Sets the value of the vfModuleId property.
123 * @param value allowed object is {@link String }
126 public void setVfModuleId(String value) {
127 this.vfModuleId = value;
133 * Gets the value of the vnfName property.
135 * @return possible object is {@link String }
138 public String getVnfName() {
143 * Sets the value of the vnfName property.
145 * @param value allowed object is {@link String }
148 public void setVnfName(String value) {
149 this.vnfName = value;
153 * Gets the value of the vfModuleName property.
155 * @return possible object is {@link String }
158 public String getVfModuleName() {
163 * Sets the value of the vfModuleName property.
165 * @param value allowed object is {@link String }
168 public void setVfModuleName(String value) {
169 this.vfModuleName = value;
174 * Gets the value of the aicNodeClli property.
176 * @return possible object is {@link String }
179 public String getAicNodeClli() {
184 * Sets the value of the aicNodeClli property.
186 * @param value allowed object is {@link String }
189 public void setAicNodeClli(String value) {
190 this.aicNodeClli = value;
194 * Gets the value of the tenantId property.
196 * @return possible object is {@link String }
199 public String getTenantId() {
204 * Sets the value of the tenantId property.
206 * @param value allowed object is {@link String }
209 public void setTenantId(String value) {
210 this.tenantId = value;
214 * Gets the value of the volumeGroupName property.
216 * @return possible object is {@link String }
219 public String getVolumeGroupName() {
220 return volumeGroupName;
224 * Sets the value of the volumeGroupName property.
226 * @param value allowed object is {@link String }
229 public void setVolumeGroupName(String value) {
230 this.volumeGroupName = value;
234 * Gets the value of the volumeGroupId property.
236 * @return possible object is {@link String }
239 public String getVolumeGroupId() {
240 return volumeGroupId;
244 * Sets the value of the volumeGroupId property.
246 * @param value allowed object is {@link String }
249 public void setVolumeGroupId(String value) {
250 this.volumeGroupId = value;