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