dc5b385a1ba3c8412797c2311b6ad640f2e2c2f6
[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;
21
22 import org.openecomp.portalsdk.analytics.RaptorObject;
23
24 public class TableSource extends RaptorObject {
25         private String tableName = null;
26
27         private String displayName = null;
28
29         private String pkFields = null;
30
31         private String viewAction = null;
32
33         private String isLargeData = null;
34
35         private String filterSql = null;
36
37         public TableSource() {
38                 super();
39         }
40
41         public TableSource(String tableName, String displayName, String pkFields,
42                         String viewAction, String isLargeData, String filterSql) {
43                 this();
44
45                 setTableName(tableName);
46                 setDisplayName(displayName);
47                 setPkFields(pkFields);
48                 setViewAction(viewAction);
49                 setIsLargeData(isLargeData);
50                 setFilterSql(filterSql);
51         } // TableSource
52
53         public String getTableName() {
54                 return tableName;
55         }
56
57         public String getDisplayName() {
58                 return displayName;
59         }
60
61         public String getPkFields() {
62                 return pkFields;
63         }
64
65         public String getViewAction() {
66                 return viewAction;
67         }
68
69         public String getIsLargeData() {
70                 return isLargeData;
71         }
72
73         public String getFilterSql() {
74                 return filterSql;
75         }
76
77         public void setTableName(String tableName) {
78                 this.tableName = tableName;
79         }
80
81         public void setDisplayName(String displayName) {
82                 this.displayName = displayName;
83         }
84
85         public void setPkFields(String pkFields) {
86                 this.pkFields = pkFields;
87         }
88
89         public void setViewAction(String viewAction) {
90                 this.viewAction = viewAction;
91         }
92
93         public void setIsLargeData(String isLargeData) {
94                 this.isLargeData = isLargeData;
95         }
96
97         public void setFilterSql(String filterSql) {
98                 this.filterSql = filterSql;
99         }
100
101 } // TableSource