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