01: /*
02: * Copyright 2007 Madhav Pulipaka
03: *
04: * This file is part of Vela.
05:
06: * Vela is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU General Public License as published by
08: * the Free Software Foundation; either version 2 of the License, or
09: * (at your option) any later version.
10: *
11: * Vela is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14: * GNU General Public License for more details.
15: *
16: * You should have received a copy of the GNU General Public License
17: * along with Vela; if not, write to the Free Software
18: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19: */
20: package vela.model;
21:
22: import java.io.*;
23:
24: public class DBObject implements Serializable {
25:
26: private String objectId;
27: private String objectName;
28: private String objectType;
29: private String objectStatus;
30: private String tableFilter;//Applicable to tables only
31: private String tableSort;//Applicable to tables only
32:
33: public String getObjectId() {
34: return objectId;
35: }
36:
37: public void setObjectId(String objectId) {
38: this .objectId = objectId;
39: }
40:
41: public String getObjectName() {
42: return objectName;
43: }
44:
45: public void setObjectName(String objectName) {
46: this .objectName = objectName;
47: }
48:
49: public String getObjectStatus() {
50: return objectStatus;
51: }
52:
53: public void setObjectStatus(String objectStatus) {
54: this .objectStatus = objectStatus;
55: }
56:
57: public String getObjectType() {
58: return objectType;
59: }
60:
61: public void setObjectType(String objectType) {
62: this .objectType = objectType;
63: }
64:
65: public String getTableFilter() {
66: return tableFilter;
67: }
68:
69: public void setTableFilter(String tableFilter) {
70: this .tableFilter = tableFilter;
71: }
72:
73: public String getTableSort() {
74: return tableSort;
75: }
76:
77: public void setTableSort(String tableSort) {
78: this.tableSort = tableSort;
79: }
80:
81: }
|