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 javax.xml.bind.annotation.XmlAccessType;
31 import javax.xml.bind.annotation.XmlAccessorType;
32 import javax.xml.bind.annotation.XmlElement;
33 import javax.xml.bind.annotation.XmlType;
37 * <p>Java class for DashboardEditorReport complex type.
39 * <p>The following schema fragment specifies the expected content contained within this class.
42 * <complexType name="DashboardEditorReport">
44 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
46 * <element name="reportId" type="{http://www.w3.org/2001/XMLSchema}string"/>
47 * <element name="reportName" type="{http://www.w3.org/2001/XMLSchema}string"/>
48 * <element name="dataType" type="{http://www.w3.org/2001/XMLSchema}string"/>
49 * <element name="position" type="{http://www.w3.org/2001/XMLSchema}string"/>
52 * </complexContent>
58 @XmlAccessorType(XmlAccessType.FIELD)
59 @XmlType(name = "DashboardEditorReport", propOrder = {
65 public class DashboardEditorReport {
67 @XmlElement(required = true)
68 protected String reportId;
69 @XmlElement(required = true)
70 protected String reportName;
71 @XmlElement(required = true)
72 protected String dataType;
73 @XmlElement(required = true)
74 protected String position;
77 * Gets the value of the reportId property.
84 public String getReportId() {
89 * Sets the value of the reportId property.
96 public void setReportId(String value) {
97 this.reportId = value;
101 * Gets the value of the reportName property.
108 public String getReportName() {
113 * Sets the value of the reportName property.
120 public void setReportName(String value) {
121 this.reportName = value;
125 * Gets the value of the dataType property.
132 public String getDataType() {
137 * Sets the value of the dataType property.
144 public void setDataType(String value) {
145 this.dataType = value;
149 * Gets the value of the position property.
156 public String getPosition() {
161 * Sets the value of the position property.
168 public void setPosition(String value) {
169 this.position = value;