4e08a6971438ee1bce0b0acf6e11552625ffe82e
[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         
38         public String getTabId() {
39                 return tabId;
40         }
41         public void setTabId(String tabId) {
42                 this.tabId = tabId;
43         }
44         public String getTabName() {
45                 return tabName;
46         }
47         public void setTabName(String tabName) {
48                 this.tabName = tabName;
49         }
50         public String getColId() {
51                 return colId;
52         }
53         public void setColId(String colId) {
54                 this.colId = colId;
55         }
56         public String getColName() {
57                 return colName;
58         }
59         public void setColName(String colName) {
60                 this.colName = colName;
61         }
62         public String getDisplayAlignment() {
63                 return displayAlignment;
64         }
65         public void setDisplayAlignment(String displayAlignment) {
66                 this.displayAlignment = displayAlignment;
67         }
68         public String getDisplayHeaderAlignment() {
69                 return displayHeaderAlignment;
70         }
71         public void setDisplayHeaderAlignment(String displayHeaderAlignment) {
72                 this.displayHeaderAlignment = displayHeaderAlignment;
73         }
74         public boolean isSortable() {
75                 return sortable;
76         }
77         public void setSortable(boolean sortable) {
78                 this.sortable = sortable;
79         }
80         public boolean isVisible() {
81                 return visible;
82         }
83         public void setVisible(boolean visible) {
84                 this.visible = visible;
85         }
86         public String getDrilldownURL() {
87                 return drilldownURL;
88         }
89         public void setDrilldownURL(String drilldownURL) {
90                 this.drilldownURL = drilldownURL;
91         }
92         public String getDrilldownParams() {
93                 return drilldownParams;
94         }
95         public void setDrilldownParams(String drilldownParams) {
96                 this.drilldownParams = drilldownParams;
97         }
98         public String getDrilldownType() {
99                 return drilldownType;
100         }
101         public void setDrilldownType(String drilldownType) {
102                 this.drilldownType = drilldownType;
103         }
104         
105         
106         
107         
108         
109         
110 }