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