Update license header in appc-flow-controller file
[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-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 //
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     "vnfInfo"
44 })
45 @XmlRootElement(name = "inventory-info")
46 public class InventoryInfo {
47
48     @XmlElement(name = "vnf-info", required = true)
49     @JsonProperty("vnf-info")
50     protected VnfInfo vnfInfo;
51
52     /**
53      * Gets the value of the vnfInfo property.
54      *
55      * @return
56      *     possible object is
57      *     {@link VnfInfo }
58      *
59      */
60     public VnfInfo getVnfInfo() {
61         return vnfInfo;
62     }
63
64     /**
65      * Sets the value of the vnfInfo property.
66      *
67      * @param value
68      *     allowed object is
69      *     {@link VnfInfo }
70      *
71      */
72     public void setVnfInfo(VnfInfo value) {
73         this.vnfInfo = value;
74     }
75
76     @Override
77     public String toString() {
78         return "InventoryInfo [vnfInfo=" + vnfInfo + "]";
79     }
80
81 }