7f203d3605eda20bd906ec0776ede72607c2ddd1
[portal/sdk.git] /
1 /*-
2  * ================================================================================
3  * ECOMP Portal SDK
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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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  * ================================================================================
19  */
20 package org.openecomp.portalsdk.analytics.model.definition.wizard;
21
22 public class ColumnEditJSON implements WizardJSON {
23
24         private String tabId;
25         private String tabName;
26         
27         private String colId;
28         private String colName;
29         private String displayAlignment;
30         private String displayHeaderAlignment;
31         private boolean sortable;
32         private boolean visible;
33         
34         private String drilldownURL;
35         private String drilldownParams;
36         private String drilldownType;
37         private String errorMessage;
38         private String errorStackTrace;
39         
40         public String getTabId() {
41                 return tabId;
42         }
43         public String getErrorMessage() {
44                 return errorMessage;
45         }
46         public void setErrorMessage(String errorMessage) {
47                 this.errorMessage = errorMessage;
48         }
49         public String getErrorStackTrace() {
50                 return errorStackTrace;
51         }
52         public void setErrorStackTrace(String errorStackTrace) {
53                 this.errorStackTrace = errorStackTrace;
54         }
55         public void setTabId(String tabId) {
56                 this.tabId = tabId;
57         }
58         public String getTabName() {
59                 return tabName;
60         }
61         public void setTabName(String tabName) {
62                 this.tabName = tabName;
63         }
64         public String getColId() {
65                 return colId;
66         }
67         public void setColId(String colId) {
68                 this.colId = colId;
69         }
70         public String getColName() {
71                 return colName;
72         }
73         public void setColName(String colName) {
74                 this.colName = colName;
75         }
76         public String getDisplayAlignment() {
77                 return displayAlignment;
78         }
79         public void setDisplayAlignment(String displayAlignment) {
80                 this.displayAlignment = displayAlignment;
81         }
82         public String getDisplayHeaderAlignment() {
83                 return displayHeaderAlignment;
84         }
85         public void setDisplayHeaderAlignment(String displayHeaderAlignment) {
86                 this.displayHeaderAlignment = displayHeaderAlignment;
87         }
88         public boolean isSortable() {
89                 return sortable;
90         }
91         public void setSortable(boolean sortable) {
92                 this.sortable = sortable;
93         }
94         public boolean isVisible() {
95                 return visible;
96         }
97         public void setVisible(boolean visible) {
98                 this.visible = visible;
99         }
100         public String getDrilldownURL() {
101                 return drilldownURL;
102         }
103         public void setDrilldownURL(String drilldownURL) {
104                 this.drilldownURL = drilldownURL;
105         }
106         public String getDrilldownParams() {
107                 return drilldownParams;
108         }
109         public void setDrilldownParams(String drilldownParams) {
110                 this.drilldownParams = drilldownParams;
111         }
112         public String getDrilldownType() {
113                 return drilldownType;
114         }
115         public void setDrilldownType(String drilldownType) {
116                 this.drilldownType = drilldownType;
117         }
118
119 }