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;
38 public String getTabId() {
41 public void setTabId(String tabId) {
44 public String getTabName() {
47 public void setTabName(String tabName) {
48 this.tabName = tabName;
50 public String getColId() {
53 public void setColId(String colId) {
56 public String getColName() {
59 public void setColName(String colName) {
60 this.colName = colName;
62 public String getDisplayAlignment() {
63 return displayAlignment;
65 public void setDisplayAlignment(String displayAlignment) {
66 this.displayAlignment = displayAlignment;
68 public String getDisplayHeaderAlignment() {
69 return displayHeaderAlignment;
71 public void setDisplayHeaderAlignment(String displayHeaderAlignment) {
72 this.displayHeaderAlignment = displayHeaderAlignment;
74 public boolean isSortable() {
77 public void setSortable(boolean sortable) {
78 this.sortable = sortable;
80 public boolean isVisible() {
83 public void setVisible(boolean visible) {
84 this.visible = visible;
86 public String getDrilldownURL() {
89 public void setDrilldownURL(String drilldownURL) {
90 this.drilldownURL = drilldownURL;
92 public String getDrilldownParams() {
93 return drilldownParams;
95 public void setDrilldownParams(String drilldownParams) {
96 this.drilldownParams = drilldownParams;
98 public String getDrilldownType() {
101 public void setDrilldownType(String drilldownType) {
102 this.drilldownType = drilldownType;