4a983aeb467d123409fdd6951878dd9563120439
[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 DashboardReportsNew complex type.
39  * 
40  * <p>The following schema fragment specifies the expected content contained within this class.
41  * 
42  * <pre>
43  * &lt;complexType name="DashboardReportsNew">
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;element name="dashboardEditor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
49  *         &lt;element name="dashboardEditorList" type="{}DashboardEditorList" minOccurs="0"/>
50  *       &lt;/sequence>
51  *     &lt;/restriction>
52  *   &lt;/complexContent>
53  * &lt;/complexType>
54  * </pre>
55  * 
56  * 
57  */
58 @XmlAccessorType(XmlAccessType.FIELD)
59 @XmlType(name = "DashboardReportsNew", propOrder = {
60     "reportsList",
61     "dashboardEditor",
62     "dashboardEditorList"
63 })
64 public class DashboardReportsNew {
65
66     protected List<Reports> reportsList;
67     protected String dashboardEditor;
68     protected DashboardEditorList dashboardEditorList;
69
70     /**
71      * Gets the value of the reportsList property.
72      * 
73      * <p>
74      * This accessor method returns a reference to the live list,
75      * not a snapshot. Therefore any modification you make to the
76      * returned list will be present inside the JAXB object.
77      * This is why there is not a <CODE>set</CODE> method for the reportsList property.
78      * 
79      * <p>
80      * For example, to add a new item, do as follows:
81      * <pre>
82      *    getReportsList().add(newItem);
83      * </pre>
84      * 
85      * 
86      * <p>
87      * Objects of the following type(s) are allowed in the list
88      * {@link Reports }
89      * 
90      * 
91      */
92     public List<Reports> getReportsList() {
93         if (reportsList == null) {
94             reportsList = new ArrayList<Reports>();
95         }
96         return this.reportsList;
97     }
98
99     /**
100      * Gets the value of the dashboardEditor property.
101      * 
102      * @return
103      *     possible object is
104      *     {@link String }
105      *     
106      */
107     public String getDashboardEditor() {
108         return dashboardEditor;
109     }
110
111     /**
112      * Sets the value of the dashboardEditor property.
113      * 
114      * @param value
115      *     allowed object is
116      *     {@link String }
117      *     
118      */
119     public void setDashboardEditor(String value) {
120         this.dashboardEditor = value;
121     }
122
123     /**
124      * Gets the value of the dashboardEditorList property.
125      * 
126      * @return
127      *     possible object is
128      *     {@link DashboardEditorList }
129      *     
130      */
131     public DashboardEditorList getDashboardEditorList() {
132         return dashboardEditorList;
133     }
134
135     /**
136      * Sets the value of the dashboardEditorList property.
137      * 
138      * @param value
139      *     allowed object is
140      *     {@link DashboardEditorList }
141      *     
142      */
143     public void setDashboardEditorList(DashboardEditorList value) {
144         this.dashboardEditorList = value;
145     }
146
147 }