Second part of onap rename
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / onap / appc / flow / controller / interfaceData / Vm.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APP-C
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.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 
26 //
27
28
29 package org.onap.appc.flow.controller.interfaceData;
30
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;
36
37 import com.fasterxml.jackson.annotation.JsonProperty;
38
39
40 @XmlAccessorType(XmlAccessType.FIELD)
41 @XmlType(name = "", propOrder = {
42     "vserverId",
43     "vnfc"
44 })
45 @XmlRootElement(name = "vm")
46 public class Vm {
47
48     @XmlElement(name = "vserver-id", required = true)
49     @JsonProperty("vserver-id")
50     protected String vserverId;
51     @XmlElement(required = true)
52     @JsonProperty("vnfc")
53     protected Vnfcslist vnfc;
54
55     /**
56      * Gets the value of the vserverId property.
57      * 
58      * @return
59      *     possible object is
60      *     {@link String }
61      *     
62      */
63     public String getVserverId() {
64         return vserverId;
65     }
66
67     /**
68      * Sets the value of the vserverId property.
69      * 
70      * @param value
71      *     allowed object is
72      *     {@link String }
73      *     
74      */
75     public void setVserverId(String value) {
76         this.vserverId = value;
77     }
78
79     /**
80      * Gets the value of the vnfc property.
81      * 
82      * @return
83      *     possible object is
84      *     {@link Vnfcslist }
85      *     
86      */
87     public Vnfcslist getVnfc() {
88         return vnfc;
89     }
90
91     /**
92      * Sets the value of the vnfc property.
93      * 
94      * @param value
95      *     allowed object is
96      *     {@link Vnfcslist }
97      *     
98      */
99     public void setVnfc(Vnfcslist value) {
100         this.vnfc = value;
101     }
102
103     @Override
104     public String toString() {
105         return "Vm [vserverId=" + vserverId + ", vnfc=" + vnfc + "]";
106     }
107
108 }