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