2368fcc625c5a3b52330bd7ac17912c6c86d30b9
[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 package org.openecomp.portalsdk.analytics.model.definition.wizard;
21
22 import java.util.List;
23
24 public class DefinitionJSON implements WizardJSON {
25
26         private String tabName;
27         private String tabId;
28         
29         private String reportId;
30         private String reportName;
31     private String reportDescr;
32     private String reportType;
33     private String dbInfo;
34     private String formHelpText;
35     private Integer pageSize;
36     private List<IdNameBooleanJSON> displayArea = null;
37     private Boolean hideFormFieldsAfterRun;
38     private Integer maxRowsInExcelCSVDownload;
39     private Integer frozenColumns;
40     private String dataGridAlign;
41     private String emptyMessage;
42     private String dataContainerHeight;
43     private String dataContainerWidth;
44     private List<NameBooleanJSON> displayOptions = null;
45     private Boolean runtimeColSortDisabled;
46     private Integer numFormCols;
47     private String reportTitle;
48     private String reportSubTitle;
49     
50         @Override
51         public String getTabName() {
52                 return tabName;
53         }
54
55         @Override
56         public void setTabName(String tabName) {
57                 this.tabName = tabName;
58         }
59
60         @Override
61         public String getTabId() {
62                 return tabId;
63         }
64
65         @Override
66         public void setTabId(String tabId) {
67                 this.tabId = tabId;
68         }
69         
70         
71
72         public String getReportId() {
73                 return reportId;
74         }
75
76         public void setReportId(String reportId) {
77                 this.reportId = reportId;
78         }
79
80         public String getReportName() {
81                 return reportName;
82         }
83
84         public void setReportName(String reportName) {
85                 this.reportName = reportName;
86         }
87
88         public String getReportDescr() {
89                 return reportDescr;
90         }
91
92         public void setReportDescr(String reportDescr) {
93                 this.reportDescr = reportDescr;
94         }
95
96         public String getReportType() {
97                 return reportType;
98         }
99
100         public void setReportType(String reportType) {
101                 this.reportType = reportType;
102         }
103
104         public String getDbInfo() {
105                 return dbInfo;
106         }
107
108         public void setDbInfo(String dbInfo) {
109                 this.dbInfo = dbInfo;
110         }
111
112         public String getFormHelpText() {
113                 return formHelpText;
114         }
115
116         public void setFormHelpText(String formHelpText) {
117                 this.formHelpText = formHelpText;
118         }
119
120         public Integer getPageSize() {
121                 return pageSize;
122         }
123
124         public void setPageSize(Integer pageSize) {
125                 this.pageSize = pageSize;
126         }
127
128         public List<IdNameBooleanJSON> getDisplayArea() {
129                 return displayArea;
130         }
131
132         public void setDisplayArea(List<IdNameBooleanJSON> displayArea) {
133                 this.displayArea = displayArea;
134         }
135
136         public Boolean getHideFormFieldsAfterRun() {
137                 return hideFormFieldsAfterRun;
138         }
139
140         public void setHideFormFieldsAfterRun(Boolean hideFormFieldsAfterRun) {
141                 this.hideFormFieldsAfterRun = hideFormFieldsAfterRun;
142         }
143
144         public Integer getMaxRowsInExcelCSVDownload() {
145                 return maxRowsInExcelCSVDownload;
146         }
147
148         public void setMaxRowsInExcelCSVDownload(Integer maxRowsInExcelCSVDownload) {
149                 this.maxRowsInExcelCSVDownload = maxRowsInExcelCSVDownload;
150         }
151
152         public Integer getFrozenColumns() {
153                 return frozenColumns;
154         }
155
156         public void setFrozenColumns(Integer frozenColumns) {
157                 this.frozenColumns = frozenColumns;
158         }
159
160         public String getDataGridAlign() {
161                 return dataGridAlign;
162         }
163
164         public void setDataGridAlign(String dataGridAlign) {
165                 this.dataGridAlign = dataGridAlign;
166         }
167
168         public String getEmptyMessage() {
169                 return emptyMessage;
170         }
171
172         public void setEmptyMessage(String emptyMessage) {
173                 this.emptyMessage = emptyMessage;
174         }
175
176         public String getDataContainerHeight() {
177                 return dataContainerHeight;
178         }
179
180         public void setDataContainerHeight(String dataContainerHeight) {
181                 this.dataContainerHeight = dataContainerHeight;
182         }
183
184         public String getDataContainerWidth() {
185                 return dataContainerWidth;
186         }
187
188         public void setDataContainerWidth(String dataContainerWidth) {
189                 this.dataContainerWidth = dataContainerWidth;
190         }
191
192         public List<NameBooleanJSON> getDisplayOptions() {
193                 return displayOptions;
194         }
195
196         public void setDisplayOptions(List<NameBooleanJSON> displayOptions) {
197                 this.displayOptions = displayOptions;
198         }
199
200         public Boolean getRuntimeColSortDisabled() {
201                 return runtimeColSortDisabled;
202         }
203
204         public void setRuntimeColSortDisabled(Boolean runtimeColSortDisabled) {
205                 this.runtimeColSortDisabled = runtimeColSortDisabled;
206         }
207
208         public Integer getNumFormCols() {
209                 return numFormCols;
210         }
211
212         public void setNumFormCols(Integer numFormCols) {
213                 this.numFormCols = numFormCols;
214         }
215
216         public String getReportTitle() {
217                 return reportTitle;
218         }
219
220         public void setReportTitle(String reportTitle) {
221                 this.reportTitle = reportTitle;
222         }
223
224         public String getReportSubTitle() {
225                 return reportSubTitle;
226         }
227
228         public void setReportSubTitle(String reportSubTitle) {
229                 this.reportSubTitle = reportSubTitle;
230         }
231         
232         
233
234 }