3281eee73cee485fefc7f3126047175fc6df4ce8
[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  * 
37  */
38 package org.onap.portalsdk.analytics.model.definition.wizard;
39
40 public class ColumnEditJSON implements WizardJSON {
41
42         private String tabId;
43         private String tabName;
44         
45         private String colId;
46         private String colName;
47         private String displayAlignment;
48         private String displayHeaderAlignment;
49         private boolean sortable;
50         private boolean visible;
51         private Integer displayWidth;
52         private Integer displayWidthInPixel;
53         private String colType;
54         private Integer groupByPos;
55         private Integer level;
56         private String dataType;
57         private String noWrap;
58         private Integer indentation;
59         
60         private String drilldownURL;
61         private String drilldownParams;
62         private String drilldownType;
63         private String errorMessage;
64         private String errorStackTrace;
65         
66         private String depeondsOnForField;
67         private String subTotalCustomText;
68         private boolean hideRepeatedKey;
69         private Integer colspan;
70         private String displayName;
71         private String displayTotal;
72         
73         public String getTabId() {
74                 return tabId;
75         }
76         public String getErrorMessage() {
77                 return errorMessage;
78         }
79         public void setErrorMessage(String errorMessage) {
80                 this.errorMessage = errorMessage;
81         }
82         public String getErrorStackTrace() {
83                 return errorStackTrace;
84         }
85         public void setErrorStackTrace(String errorStackTrace) {
86                 this.errorStackTrace = errorStackTrace;
87         }
88         public void setTabId(String tabId) {
89                 this.tabId = tabId;
90         }
91         public String getTabName() {
92                 return tabName;
93         }
94         public void setTabName(String tabName) {
95                 this.tabName = tabName;
96         }
97         public String getColId() {
98                 return colId;
99         }
100         public void setColId(String colId) {
101                 this.colId = colId;
102         }
103         public String getColName() {
104                 return colName;
105         }
106         public void setColName(String colName) {
107                 this.colName = colName;
108         }
109         public String getDisplayAlignment() {
110                 return displayAlignment;
111         }
112         public void setDisplayAlignment(String displayAlignment) {
113                 this.displayAlignment = displayAlignment;
114         }
115         public String getDisplayHeaderAlignment() {
116                 return displayHeaderAlignment;
117         }
118         public void setDisplayHeaderAlignment(String displayHeaderAlignment) {
119                 this.displayHeaderAlignment = displayHeaderAlignment;
120         }
121         public boolean isSortable() {
122                 return sortable;
123         }
124         public void setSortable(boolean sortable) {
125                 this.sortable = sortable;
126         }
127         public boolean isVisible() {
128                 return visible;
129         }
130         public void setVisible(boolean visible) {
131                 this.visible = visible;
132         }
133         public String getDrilldownURL() {
134                 return drilldownURL;
135         }
136         public void setDrilldownURL(String drilldownURL) {
137                 this.drilldownURL = drilldownURL;
138         }
139         public String getDrilldownParams() {
140                 return drilldownParams;
141         }
142         public void setDrilldownParams(String drilldownParams) {
143                 this.drilldownParams = drilldownParams;
144         }
145         public String getDrilldownType() {
146                 return drilldownType;
147         }
148         public void setDrilldownType(String drilldownType) {
149                 this.drilldownType = drilldownType;
150         }
151         
152         public Integer getDisplayWidth() {
153                 return displayWidth;
154         }
155         public void setDisplayWidth(Integer displayWidth) {
156                 this.displayWidth = displayWidth;
157         }
158         public Integer getDisplayWidthInPixel() {
159                 return displayWidthInPixel;
160         }
161         public void setDisplayWidthInPixel(Integer displayWidthInPixel) {
162                 this.displayWidthInPixel = displayWidthInPixel;
163         }
164         public Integer getGroupByPos() {
165                 return groupByPos;
166         }
167         public void setGroupByPos(Integer groupByPos) {
168                 this.groupByPos = groupByPos;
169         }
170         public Integer getLevel() {
171                 return level;
172         }
173         public void setLevel(Integer level) {
174                 this.level = level;
175         }
176         public String getDataType() {
177                 return dataType;
178         }
179         public void setDataType(String dataType) {
180                 this.dataType = dataType;
181         }
182         public String getNoWrap() {
183                 return noWrap;
184         }
185         public void setNoWrap(String noWrap) {
186                 this.noWrap = noWrap;
187         }
188         public Integer getIndentation() {
189                 return indentation;
190         }
191         public void setIndentation(Integer indentation) {
192                 this.indentation = indentation;
193         }
194         public String getColType() {
195                 return colType;
196         }
197         public void setColType(String colType) {
198                 this.colType = colType;
199         }
200         public String getDepeondsOnForField() {
201                 return depeondsOnForField;
202         }
203         public void setDepeondsOnForField(String depeondsOnForField) {
204                 this.depeondsOnForField = depeondsOnForField;
205         }
206         public String getSubTotalCustomText() {
207                 return subTotalCustomText;
208         }
209         public void setSubTotalCustomText(String subTotalCustomText) {
210                 this.subTotalCustomText = subTotalCustomText;
211         }
212         public boolean isHideRepeatedKey() {
213                 return hideRepeatedKey;
214         }
215         public void setHideRepeatedKey(boolean hideRepeatedKey) {
216                 this.hideRepeatedKey = hideRepeatedKey;
217         }
218         public Integer getColspan() {
219                 return colspan;
220         }
221         public void setColspan(Integer colspan) {
222                 this.colspan = colspan;
223         }
224         public String getDisplayName() {
225                 return displayName;
226         }
227         public void setDisplayName(String displayName) {
228                 this.displayName = displayName;
229         }
230         public String getDisplayTotal() {
231                 return displayTotal;
232         }
233         public void setDisplayTotal(String displayTotal) {
234                 this.displayTotal = displayTotal;
235         }
236         
237         
238         
239
240 }