ad68a4bfe6ca383de34d83e439af31f692c83b84
[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 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;
34
35
36 /**
37  * <p>Java class for DashboardEditorReport complex type.
38  * 
39  * <p>The following schema fragment specifies the expected content contained within this class.
40  * 
41  * <pre>
42  * &lt;complexType name="DashboardEditorReport">
43  *   &lt;complexContent>
44  *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
45  *       &lt;sequence>
46  *         &lt;element name="reportId" type="{http://www.w3.org/2001/XMLSchema}string"/>
47  *         &lt;element name="reportName" type="{http://www.w3.org/2001/XMLSchema}string"/>
48  *         &lt;element name="dataType" type="{http://www.w3.org/2001/XMLSchema}string"/>
49  *         &lt;element name="position" type="{http://www.w3.org/2001/XMLSchema}string"/>
50  *       &lt;/sequence>
51  *     &lt;/restriction>
52  *   &lt;/complexContent>
53  * &lt;/complexType>
54  * </pre>
55  * 
56  * 
57  */
58 @XmlAccessorType(XmlAccessType.FIELD)
59 @XmlType(name = "DashboardEditorReport", propOrder = {
60     "reportId",
61     "reportName",
62     "dataType",
63     "position"
64 })
65 public class DashboardEditorReport {
66
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;
75
76     /**
77      * Gets the value of the reportId property.
78      * 
79      * @return
80      *     possible object is
81      *     {@link String }
82      *     
83      */
84     public String getReportId() {
85         return reportId;
86     }
87
88     /**
89      * Sets the value of the reportId property.
90      * 
91      * @param value
92      *     allowed object is
93      *     {@link String }
94      *     
95      */
96     public void setReportId(String value) {
97         this.reportId = value;
98     }
99
100     /**
101      * Gets the value of the reportName property.
102      * 
103      * @return
104      *     possible object is
105      *     {@link String }
106      *     
107      */
108     public String getReportName() {
109         return reportName;
110     }
111
112     /**
113      * Sets the value of the reportName property.
114      * 
115      * @param value
116      *     allowed object is
117      *     {@link String }
118      *     
119      */
120     public void setReportName(String value) {
121         this.reportName = value;
122     }
123
124     /**
125      * Gets the value of the dataType property.
126      * 
127      * @return
128      *     possible object is
129      *     {@link String }
130      *     
131      */
132     public String getDataType() {
133         return dataType;
134     }
135
136     /**
137      * Sets the value of the dataType property.
138      * 
139      * @param value
140      *     allowed object is
141      *     {@link String }
142      *     
143      */
144     public void setDataType(String value) {
145         this.dataType = value;
146     }
147
148     /**
149      * Gets the value of the position property.
150      * 
151      * @return
152      *     possible object is
153      *     {@link String }
154      *     
155      */
156     public String getPosition() {
157         return position;
158     }
159
160     /**
161      * Sets the value of the position property.
162      * 
163      * @param value
164      *     allowed object is
165      *     {@link String }
166      *     
167      */
168     public void setPosition(String value) {
169         this.position = value;
170     }
171
172 }