d2c2b48cce0428b9d780d8f52b0a03748f6443bd
[portal/sdk.git] /
1 /*
2  * ============LICENSE_START==========================================
3  * ONAP Portal SDK
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the "License");
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the "License");
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 //
39 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-2 
40 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
41 // Any modifications to this file will be lost upon recompilation of the source schema. 
42 // Generated on: 2016.06.07 at 02:07:29 PM EDT 
43 //
44
45
46 package org.onap.portalsdk.analytics.xmlobj;
47
48 import javax.xml.bind.annotation.XmlAccessType;
49 import javax.xml.bind.annotation.XmlAccessorType;
50 import javax.xml.bind.annotation.XmlElement;
51 import javax.xml.bind.annotation.XmlType;
52
53
54 /**
55  * <p>Java class for DashboardEditorReport complex type.
56  * 
57  * <p>The following schema fragment specifies the expected content contained within this class.
58  * 
59  * <pre>
60  * &lt;complexType name="DashboardEditorReport">
61  *   &lt;complexContent>
62  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
63  *       &lt;sequence>
64  *         &lt;element name="reportId" type="{http://www.w3.org/2001/XMLSchema}string"/>
65  *         &lt;element name="reportName" type="{http://www.w3.org/2001/XMLSchema}string"/>
66  *         &lt;element name="dataType" type="{http://www.w3.org/2001/XMLSchema}string"/>
67  *         &lt;element name="position" type="{http://www.w3.org/2001/XMLSchema}string"/>
68  *       &lt;/sequence>
69  *     &lt;/restriction>
70  *   &lt;/complexContent>
71  * &lt;/complexType>
72  * </pre>
73  * 
74  * 
75  */
76 @XmlAccessorType(XmlAccessType.FIELD)
77 @XmlType(name = "DashboardEditorReport", propOrder = {
78     "reportId",
79     "reportName",
80     "dataType",
81     "position"
82 })
83 public class DashboardEditorReport {
84
85     @XmlElement(required = true)
86     protected String reportId;
87     @XmlElement(required = true)
88     protected String reportName;
89     @XmlElement(required = true)
90     protected String dataType;
91     @XmlElement(required = true)
92     protected String position;
93
94     /**
95      * Gets the value of the reportId property.
96      * 
97      * @return
98      *     possible object is
99      *     {@link String }
100      *     
101      */
102     public String getReportId() {
103         return reportId;
104     }
105
106     /**
107      * Sets the value of the reportId property.
108      * 
109      * @param value
110      *     allowed object is
111      *     {@link String }
112      *     
113      */
114     public void setReportId(String value) {
115         this.reportId = value;
116     }
117
118     /**
119      * Gets the value of the reportName property.
120      * 
121      * @return
122      *     possible object is
123      *     {@link String }
124      *     
125      */
126     public String getReportName() {
127         return reportName;
128     }
129
130     /**
131      * Sets the value of the reportName property.
132      * 
133      * @param value
134      *     allowed object is
135      *     {@link String }
136      *     
137      */
138     public void setReportName(String value) {
139         this.reportName = value;
140     }
141
142     /**
143      * Gets the value of the dataType property.
144      * 
145      * @return
146      *     possible object is
147      *     {@link String }
148      *     
149      */
150     public String getDataType() {
151         return dataType;
152     }
153
154     /**
155      * Sets the value of the dataType property.
156      * 
157      * @param value
158      *     allowed object is
159      *     {@link String }
160      *     
161      */
162     public void setDataType(String value) {
163         this.dataType = value;
164     }
165
166     /**
167      * Gets the value of the position property.
168      * 
169      * @return
170      *     possible object is
171      *     {@link String }
172      *     
173      */
174     public String getPosition() {
175         return position;
176     }
177
178     /**
179      * Sets the value of the position property.
180      * 
181      * @param value
182      *     allowed object is
183      *     {@link String }
184      *     
185      */
186     public void setPosition(String value) {
187         this.position = value;
188     }
189
190 }