2 * ============LICENSE_START==========================================
4 * ===================================================================
5 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6 * ===================================================================
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
13 * http://www.apache.org/licenses/LICENSE-2.0
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.
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
26 * https://creativecommons.org/licenses/by/4.0/
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.
34 * ============LICENSE_END============================================
38 package org.onap.portalsdk.analytics.model.definition.wizard;
40 import org.onap.portalsdk.analytics.xmlobj.SemaphoreList;
42 public class ColumnEditJSON implements WizardJSON {
45 private String tabName;
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;
62 private String drilldownURL;
63 private String drilldownParams;
64 private String drilldownType;
65 private String errorMessage;
66 private String errorStackTrace;
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;
78 public SemaphoreList getSemaphoreList() {
81 public void setSemaphoreList(SemaphoreList semaphoreList) {
82 this.semaphoreList = semaphoreList;
84 public String getSemaphoreId() {
87 public void setSemaphoreId(String semaphoreId) {
88 this.semaphoreId = semaphoreId;
90 public String getTabId() {
93 public String getErrorMessage() {
96 public void setErrorMessage(String errorMessage) {
97 this.errorMessage = errorMessage;
99 public String getErrorStackTrace() {
100 return errorStackTrace;
102 public void setErrorStackTrace(String errorStackTrace) {
103 this.errorStackTrace = errorStackTrace;
105 public void setTabId(String tabId) {
108 public String getTabName() {
111 public void setTabName(String tabName) {
112 this.tabName = tabName;
114 public String getColId() {
117 public void setColId(String colId) {
120 public String getColName() {
123 public void setColName(String colName) {
124 this.colName = colName;
126 public String getDisplayAlignment() {
127 return displayAlignment;
129 public void setDisplayAlignment(String displayAlignment) {
130 this.displayAlignment = displayAlignment;
132 public String getDisplayHeaderAlignment() {
133 return displayHeaderAlignment;
135 public void setDisplayHeaderAlignment(String displayHeaderAlignment) {
136 this.displayHeaderAlignment = displayHeaderAlignment;
138 public boolean isSortable() {
141 public void setSortable(boolean sortable) {
142 this.sortable = sortable;
144 public boolean isVisible() {
147 public void setVisible(boolean visible) {
148 this.visible = visible;
150 public String getDrilldownURL() {
153 public void setDrilldownURL(String drilldownURL) {
154 this.drilldownURL = drilldownURL;
156 public String getDrilldownParams() {
157 return drilldownParams;
159 public void setDrilldownParams(String drilldownParams) {
160 this.drilldownParams = drilldownParams;
162 public String getDrilldownType() {
163 return drilldownType;
165 public void setDrilldownType(String drilldownType) {
166 this.drilldownType = drilldownType;
169 public Integer getDisplayWidth() {
172 public void setDisplayWidth(Integer displayWidth) {
173 this.displayWidth = displayWidth;
175 public Integer getDisplayWidthInPixel() {
176 return displayWidthInPixel;
178 public void setDisplayWidthInPixel(Integer displayWidthInPixel) {
179 this.displayWidthInPixel = displayWidthInPixel;
181 public Integer getGroupByPos() {
184 public void setGroupByPos(Integer groupByPos) {
185 this.groupByPos = groupByPos;
187 public Integer getLevel() {
190 public void setLevel(Integer level) {
193 public String getDataType() {
196 public void setDataType(String dataType) {
197 this.dataType = dataType;
199 public String getNoWrap() {
202 public void setNoWrap(String noWrap) {
203 this.noWrap = noWrap;
205 public Integer getIndentation() {
208 public void setIndentation(Integer indentation) {
209 this.indentation = indentation;
211 public String getColType() {
214 public void setColType(String colType) {
215 this.colType = colType;
217 public String getDepeondsOnForField() {
218 return depeondsOnForField;
220 public void setDepeondsOnForField(String depeondsOnForField) {
221 this.depeondsOnForField = depeondsOnForField;
223 public String getSubTotalCustomText() {
224 return subTotalCustomText;
226 public void setSubTotalCustomText(String subTotalCustomText) {
227 this.subTotalCustomText = subTotalCustomText;
229 public boolean isHideRepeatedKey() {
230 return hideRepeatedKey;
232 public void setHideRepeatedKey(boolean hideRepeatedKey) {
233 this.hideRepeatedKey = hideRepeatedKey;
235 public Integer getColspan() {
238 public void setColspan(Integer colspan) {
239 this.colspan = colspan;
241 public String getDisplayName() {
244 public void setDisplayName(String displayName) {
245 this.displayName = displayName;
247 public String getDisplayTotal() {
250 public void setDisplayTotal(String displayTotal) {
251 this.displayTotal = displayTotal;