99cb986d593a23590f2bb0c6fdcddba457ecb3b3
[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.XmlType;
35
36
37 /**
38  * <p>Java class for DashboardReports complex type.
39  * 
40  * <p>The following schema fragment specifies the expected content contained within this class.
41  * 
42  * <pre>
43  * &lt;complexType name="DashboardReports">
44  *   &lt;complexContent>
45  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
46  *       &lt;sequence>
47  *         &lt;element name="reportsList" type="{}Reports" maxOccurs="unbounded" minOccurs="0"/>
48  *       &lt;/sequence>
49  *     &lt;/restriction>
50  *   &lt;/complexContent>
51  * &lt;/complexType>
52  * </pre>
53  * 
54  * 
55  */
56 @XmlAccessorType(XmlAccessType.FIELD)
57 @XmlType(name = "DashboardReports", propOrder = {
58     "reportsList"
59 })
60 public class DashboardReports {
61
62     protected List<Reports> reportsList;
63
64     /**
65      * Gets the value of the reportsList property.
66      * 
67      * <p>
68      * This accessor method returns a reference to the live list,
69      * not a snapshot. Therefore any modification you make to the
70      * returned list will be present inside the JAXB object.
71      * This is why there is not a <CODE>set</CODE> method for the reportsList property.
72      * 
73      * <p>
74      * For example, to add a new item, do as follows:
75      * <pre>
76      *    getReportsList().add(newItem);
77      * </pre>
78      * 
79      * 
80      * <p>
81      * Objects of the following type(s) are allowed in the list
82      * {@link Reports }
83      * 
84      * 
85      */
86     public List<Reports> getReportsList() {
87         if (reportsList == null) {
88             reportsList = new ArrayList<Reports>();
89         }
90         return this.reportsList;
91     }
92
93 }