86c8c257985fe1b985fbb879b7bde3db80d86f9e
[appc.git] / appc-config / appc-flow-controller / provider / src / main / java / org / onap / appc / flow / controller / interfaceData / InventoryInfo.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 //
24 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
25 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
26 // Any modifications to this file will be lost upon recompilation of the source schema.
27 // Generated on: 2017.07.31 at 10:30:39 AM EDT
28 //
29
30
31 package org.onap.appc.flow.controller.interfaceData;
32
33 import javax.xml.bind.annotation.XmlAccessType;
34 import javax.xml.bind.annotation.XmlAccessorType;
35 import javax.xml.bind.annotation.XmlElement;
36 import javax.xml.bind.annotation.XmlRootElement;
37 import javax.xml.bind.annotation.XmlType;
38
39 import com.fasterxml.jackson.annotation.JsonProperty;
40
41
42 @XmlAccessorType(XmlAccessType.FIELD)
43 @XmlType(name = "", propOrder = {
44     "vnfInfo"
45 })
46 @XmlRootElement(name = "inventory-info")
47 public class InventoryInfo {
48
49     @XmlElement(name = "vnf-info", required = true)
50     @JsonProperty("vnf-info")
51     protected VnfInfo vnfInfo;
52
53     /**
54      * Gets the value of the vnfInfo property.
55      *
56      * @return
57      *     possible object is
58      *     {@link VnfInfo }
59      *
60      */
61     public VnfInfo getVnfInfo() {
62         return vnfInfo;
63     }
64
65     /**
66      * Sets the value of the vnfInfo property.
67      *
68      * @param value
69      *     allowed object is
70      *     {@link VnfInfo }
71      *
72      */
73     public void setVnfInfo(VnfInfo value) {
74         this.vnfInfo = value;
75     }
76
77     @Override
78     public String toString() {
79         return "InventoryInfo [vnfInfo=" + vnfInfo + "]";
80     }
81
82 }