7068a3ed3553475a9343d8e7c97ea0a52a7c4748
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * ECOMP Portal SDK
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  */
20 //
21 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 
22 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
23 // Any modifications to this file will be lost upon recompilation of the source schema. 
24 // Generated on: 2016.06.07 at 02:07:29 PM EDT 
25 //
26
27
28 package org.openecomp.portalsdk.analytics.xmlobj;
29
30 import java.util.ArrayList;
31 import java.util.List;
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.XmlType;
36
37
38 /**
39  * <p>Java class for DataColumnList complex type.
40  * 
41  * <p>The following schema fragment specifies the expected content contained within this class.
42  * 
43  * <pre>
44  * &lt;complexType name="DataColumnList">
45  *   &lt;complexContent>
46  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
47  *       &lt;sequence>
48  *         &lt;element name="dataColumn" type="{}DataColumnType" maxOccurs="unbounded"/>
49  *       &lt;/sequence>
50  *     &lt;/restriction>
51  *   &lt;/complexContent>
52  * &lt;/complexType>
53  * </pre>
54  * 
55  * 
56  */
57 @XmlAccessorType(XmlAccessType.FIELD)
58 @XmlType(name = "DataColumnList", propOrder = {
59     "dataColumn"
60 })
61 public class DataColumnList {
62
63     @XmlElement(required = true)
64     protected List<DataColumnType> dataColumn;
65
66     /**
67      * Gets the value of the dataColumn property.
68      * 
69      * <p>
70      * This accessor method returns a reference to the live list,
71      * not a snapshot. Therefore any modification you make to the
72      * returned list will be present inside the JAXB object.
73      * This is why there is not a <CODE>set</CODE> method for the dataColumn property.
74      * 
75      * <p>
76      * For example, to add a new item, do as follows:
77      * <pre>
78      *    getDataColumn().add(newItem);
79      * </pre>
80      * 
81      * 
82      * <p>
83      * Objects of the following type(s) are allowed in the list
84      * {@link DataColumnType }
85      * 
86      * 
87      */
88     public List<DataColumnType> getDataColumn() {
89         if (dataColumn == null) {
90             dataColumn = new ArrayList<DataColumnType>();
91         }
92         return this.dataColumn;
93     }
94
95 }