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 / DependencyInfo.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 java.util.ArrayList;
33 import java.util.List;
34
35 import javax.xml.bind.annotation.XmlAccessType;
36 import javax.xml.bind.annotation.XmlAccessorType;
37 import javax.xml.bind.annotation.XmlRootElement;
38 import javax.xml.bind.annotation.XmlType;
39
40 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
41
42
43 @XmlAccessorType(XmlAccessType.FIELD)
44 @XmlType(name = "", propOrder = {
45     "vnfcs"
46 })
47 @XmlRootElement(name = "dependency-info")
48 @JsonIgnoreProperties(ignoreUnknown = true)
49 public class DependencyInfo {
50
51     protected List<Vnfcs> vnfcs;
52
53     /**
54      * Gets the value of the vnfcs property.
55      *
56      * <p>
57      * This accessor method returns a reference to the live list,
58      * not a snapshot. Therefore any modification you make to the
59      * returned list will be present inside the JAXB object.
60      * This is why there is not a <CODE>set</CODE> method for the vnfcs property.
61      *
62      * <p>
63      * For example, to add a new item, do as follows:
64      * <pre>
65      *    getVnfcs().add(newItem);
66      * </pre>
67      *
68      *
69      * <p>
70      * Objects of the following type(s) are allowed in the list
71      * {@link Vnfcs }
72      *
73      *
74      */
75     public List<Vnfcs> getVnfcs() {
76         if (vnfcs == null) {
77             vnfcs = new ArrayList<Vnfcs>();
78         }
79         return this.vnfcs;
80     }
81
82     @Override
83     public String toString() {
84         return "DependencyInfo [vnfcs=" + vnfcs + "]";
85     }
86
87 }