Changes needed for MultiStep Actions
[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-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
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  * ============LICENSE_END=========================================================
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     "vmId",
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("vm-id")
54     protected String vmId;
55     @XmlElement(required = true)
56     @JsonProperty("vnfc")
57     protected Vnfcslist vnfc;
58
59     /**
60      * Gets the value of the vserverId property.
61      *
62      * @return
63      *     possible object is
64      *     {@link String }
65      *
66      */
67     public String getVserverId() {
68         return vserverId;
69     }
70
71     /**
72      * Sets the value of the vserverId property.
73      *
74      * @param value
75      *     allowed object is
76      *     {@link String }
77      *
78      */
79     public void setVserverId(String value) {
80         this.vserverId = value;
81     }
82
83     /**
84      * Gets the value of the vnfc property.
85      *
86      * @return
87      *     possible object is
88      *     {@link Vnfcslist }
89      *
90      */
91     public Vnfcslist getVnfc() {
92         return vnfc;
93     }
94
95     /**
96      * Sets the value of the vnfc property.
97      *
98      * @param value
99      *     allowed object is
100      *     {@link Vnfcslist }
101      *
102      */
103     public void setVnfc(Vnfcslist value) {
104         this.vnfc = value;
105     }
106
107     @Override
108     public String toString() {
109         return "Vm [vserverId=" + vserverId + ", vmId=" + vmId + ", vnfc=" + vnfc + "]";
110     }
111
112     public String getVmId() {
113         return vmId;
114     }
115
116     public void setVmId(String vmId) {
117         this.vmId = vmId;
118     }
119
120 }