2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017-2018 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  * ============LICENSE_END=========================================================
 
  22 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
 
  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: 2017.07.31 at 10:30:39 AM EDT
 
  29 package org.onap.appc.flow.controller.interfaceData;
 
  31 import javax.xml.bind.annotation.XmlAccessType;
 
  32 import javax.xml.bind.annotation.XmlAccessorType;
 
  33 import javax.xml.bind.annotation.XmlElement;
 
  34 import javax.xml.bind.annotation.XmlRootElement;
 
  35 import javax.xml.bind.annotation.XmlType;
 
  37 import com.fasterxml.jackson.annotation.JsonProperty;
 
  40 @XmlAccessorType(XmlAccessType.FIELD)
 
  41 @XmlType(name = "", propOrder = {
 
  45 @XmlRootElement(name = "vm")
 
  48     @XmlElement(name = "vserver-id", required = true)
 
  49     @JsonProperty("vserver-id")
 
  50     protected String vserverId;
 
  51     @XmlElement(required = true)
 
  53     protected Vnfcslist vnfc;
 
  56      * Gets the value of the vserverId property.
 
  63     public String getVserverId() {
 
  68      * Sets the value of the vserverId property.
 
  75     public void setVserverId(String value) {
 
  76         this.vserverId = value;
 
  80      * Gets the value of the vnfc property.
 
  87     public Vnfcslist getVnfc() {
 
  92      * Sets the value of the vnfc property.
 
  99     public void setVnfc(Vnfcslist value) {
 
 104     public String toString() {
 
 105         return "Vm [vserverId=" + vserverId + ", vnfc=" + vnfc + "]";