Add junit coverage to RequestInfoBuilder class
[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 : APPC
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  *
19  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
20  * ============LICENSE_END=========================================================
21  */
22 //
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
27 //
28
29
30 package org.onap.appc.flow.controller.interfaceData;
31
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;
37
38 import com.fasterxml.jackson.annotation.JsonProperty;
39
40
41 @XmlAccessorType(XmlAccessType.FIELD)
42 @XmlType(name = "", propOrder = {
43     "vserverId",
44     "vnfc"
45 })
46 @XmlRootElement(name = "vm")
47 public class Vm {
48
49     @XmlElement(name = "vserver-id", required = true)
50     @JsonProperty("vserver-id")
51     protected String vserverId;
52     @XmlElement(required = true)
53     @JsonProperty("vnfc")
54     protected Vnfcslist vnfc;
55
56     /**
57      * Gets the value of the vserverId property.
58      *
59      * @return
60      *     possible object is
61      *     {@link String }
62      *
63      */
64     public String getVserverId() {
65         return vserverId;
66     }
67
68     /**
69      * Sets the value of the vserverId property.
70      *
71      * @param value
72      *     allowed object is
73      *     {@link String }
74      *
75      */
76     public void setVserverId(String value) {
77         this.vserverId = value;
78     }
79
80     /**
81      * Gets the value of the vnfc property.
82      *
83      * @return
84      *     possible object is
85      *     {@link Vnfcslist }
86      *
87      */
88     public Vnfcslist getVnfc() {
89         return vnfc;
90     }
91
92     /**
93      * Sets the value of the vnfc property.
94      *
95      * @param value
96      *     allowed object is
97      *     {@link Vnfcslist }
98      *
99      */
100     public void setVnfc(Vnfcslist value) {
101         this.vnfc = value;
102     }
103
104     @Override
105     public String toString() {
106         return "Vm [vserverId=" + vserverId + ", vnfc=" + vnfc + "]";
107     }
108
109 }