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.
19 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
20 * ============LICENSE_END=========================================================
23 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
24 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
25 // Any modifications to this file will be lost upon recompilation of the source schema.
26 // Generated on: 2017.07.31 at 10:30:39 AM EDT
30 package org.onap.appc.flow.controller.interfaceData;
32 import java.util.ArrayList;
33 import java.util.List;
35 import javax.xml.bind.annotation.XmlAccessType;
36 import javax.xml.bind.annotation.XmlAccessorType;
37 import javax.xml.bind.annotation.XmlElement;
38 import javax.xml.bind.annotation.XmlRootElement;
39 import javax.xml.bind.annotation.XmlType;
41 import com.fasterxml.jackson.annotation.JsonProperty;
44 @XmlAccessorType(XmlAccessType.FIELD)
45 @XmlType(name = "", propOrder = {
51 @XmlRootElement(name = "vnf-info")
52 public class VnfInfo {
54 @XmlElement(name = "vnf-id", required = true)
55 @JsonProperty("vnf-id")
56 protected String vnfId;
57 @XmlElement(name = "vnf-name", required = true)
58 @JsonProperty("vnf-name")
59 protected String vnfName;
60 @XmlElement(name = "vnf-type", required = true)
61 @JsonProperty("vnf-type")
62 protected String vnfType;
64 protected List<Vm> vm;
67 * Gets the value of the vnfId property.
74 public String getVnfId() {
79 * Sets the value of the vnfId property.
86 public void setVnfId(String value) {
91 * Gets the value of the vnfName property.
98 public String getVnfName() {
103 * Sets the value of the vnfName property.
110 public void setVnfName(String value) {
111 this.vnfName = value;
115 * Gets the value of the vnfType property.
122 public String getVnfType() {
127 * Sets the value of the vnfType property.
134 public void setVnfType(String value) {
135 this.vnfType = value;
139 * Gets the value of the vm property.
142 * This accessor method returns a reference to the live list,
143 * not a snapshot. Therefore any modification you make to the
144 * returned list will be present inside the JAXB object.
145 * This is why there is not a <CODE>set</CODE> method for the vm property.
148 * For example, to add a new item, do as follows:
150 * getVm().add(newItem);
155 * Objects of the following type(s) are allowed in the list
160 public List<Vm> getVm() {
162 vm = new ArrayList<Vm>();
168 public String toString() {
169 return "VnfInfo [vnfId=" + vnfId + ", vnfName=" + vnfName
170 + ", vnfType=" + vnfType + ", vm=" + vm + "]";