2 * ================================================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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 * ================================================================================
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
28 package org.openecomp.portalsdk.analytics.xmlobj;
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;
38 * <p>Java class for DashboardReportsNew complex type.
40 * <p>The following schema fragment specifies the expected content contained within this class.
43 * <complexType name="DashboardReportsNew">
45 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
47 * <element name="reportsList" type="{}Reports" maxOccurs="unbounded" minOccurs="0"/>
48 * <element name="dashboardEditor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
49 * <element name="dashboardEditorList" type="{}DashboardEditorList" minOccurs="0"/>
52 * </complexContent>
58 @XmlAccessorType(XmlAccessType.FIELD)
59 @XmlType(name = "DashboardReportsNew", propOrder = {
64 public class DashboardReportsNew {
66 protected List<Reports> reportsList;
67 protected String dashboardEditor;
68 protected DashboardEditorList dashboardEditorList;
71 * Gets the value of the reportsList property.
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.
80 * For example, to add a new item, do as follows:
82 * getReportsList().add(newItem);
87 * Objects of the following type(s) are allowed in the list
92 public List<Reports> getReportsList() {
93 if (reportsList == null) {
94 reportsList = new ArrayList<Reports>();
96 return this.reportsList;
100 * Gets the value of the dashboardEditor property.
107 public String getDashboardEditor() {
108 return dashboardEditor;
112 * Sets the value of the dashboardEditor property.
119 public void setDashboardEditor(String value) {
120 this.dashboardEditor = value;
124 * Gets the value of the dashboardEditorList property.
128 * {@link DashboardEditorList }
131 public DashboardEditorList getDashboardEditorList() {
132 return dashboardEditorList;
136 * Sets the value of the dashboardEditorList property.
140 * {@link DashboardEditorList }
143 public void setDashboardEditorList(DashboardEditorList value) {
144 this.dashboardEditorList = value;