2 * ================================================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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 * ================================================================================
20 package org.openecomp.portalsdk.analytics.model.definition.wizard;
22 public class ColumnEditJSON implements WizardJSON {
25 private String tabName;
28 private String colName;
29 private String displayAlignment;
30 private String displayHeaderAlignment;
31 private boolean sortable;
32 private boolean visible;
34 private String drilldownURL;
35 private String drilldownParams;
36 private String drilldownType;
37 private String errorMessage;
38 private String errorStackTrace;
40 public String getTabId() {
43 public String getErrorMessage() {
46 public void setErrorMessage(String errorMessage) {
47 this.errorMessage = errorMessage;
49 public String getErrorStackTrace() {
50 return errorStackTrace;
52 public void setErrorStackTrace(String errorStackTrace) {
53 this.errorStackTrace = errorStackTrace;
55 public void setTabId(String tabId) {
58 public String getTabName() {
61 public void setTabName(String tabName) {
62 this.tabName = tabName;
64 public String getColId() {
67 public void setColId(String colId) {
70 public String getColName() {
73 public void setColName(String colName) {
74 this.colName = colName;
76 public String getDisplayAlignment() {
77 return displayAlignment;
79 public void setDisplayAlignment(String displayAlignment) {
80 this.displayAlignment = displayAlignment;
82 public String getDisplayHeaderAlignment() {
83 return displayHeaderAlignment;
85 public void setDisplayHeaderAlignment(String displayHeaderAlignment) {
86 this.displayHeaderAlignment = displayHeaderAlignment;
88 public boolean isSortable() {
91 public void setSortable(boolean sortable) {
92 this.sortable = sortable;
94 public boolean isVisible() {
97 public void setVisible(boolean visible) {
98 this.visible = visible;
100 public String getDrilldownURL() {
103 public void setDrilldownURL(String drilldownURL) {
104 this.drilldownURL = drilldownURL;
106 public String getDrilldownParams() {
107 return drilldownParams;
109 public void setDrilldownParams(String drilldownParams) {
110 this.drilldownParams = drilldownParams;
112 public String getDrilldownType() {
113 return drilldownType;
115 public void setDrilldownType(String drilldownType) {
116 this.drilldownType = drilldownType;