01: //** Copyright Statement ***************************************************
02: //The Salmon Open Framework for Internet Applications (SOFIA)
03: // Copyright (C) 1999 - 2002, Salmon LLC
04: //
05: // This program is free software; you can redistribute it and/or
06: // modify it under the terms of the GNU General Public License version 2
07: // as published by the Free Software Foundation;
08: //
09: // This program is distributed in the hope that it will be useful,
10: // but WITHOUT ANY WARRANTY; without even the implied warranty of
11: // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12: // GNU General Public License for more details.
13: //
14: // You should have received a copy of the GNU General Public License
15: // along with this program; if not, write to the Free Software
16: // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17: //
18: // For more information please visit http://www.salmonllc.com
19: //** End Copyright Statement ***************************************************
20: package com.salmonllc.fatwire;
21:
22: import com.salmonllc.jsp.*;
23:
24: /**
25: * Stub object so the rest of the framework will compile. Replace with the real one if using update engine.
26: */
27: public class UEDataStore extends com.salmonllc.sql.DataStoreBuffer {
28: private String _dbProfile = null;
29:
30: public UEDataStore() {
31: }
32:
33: public UEDataStore(JspController cont, String contentClassName,
34: String[] colList) {
35: }
36:
37: public UEDataStore(JspController cont, String contentClassName,
38: String sDbProfile) throws Exception {
39: }
40:
41: public UEDataStore(JspController cont, String contentClassName,
42: String colList[], String sDbProfile) throws Exception {
43: }
44:
45: public void buildBuffer(JspController cont,
46: String contentClassName, String[] colList) throws Exception {
47: }
48:
49: /**
50: * @return Returns the dbProfile.
51: */
52: public String getDbProfile() {
53: return _dbProfile;
54: }
55:
56: /**
57: * @param dbProfile The dbProfile to set.
58: */
59: public void setDbProfile(String dbProfile) {
60: _dbProfile = dbProfile;
61: }
62:
63: public void retrieve() {
64: }
65:
66: public void setMaxRows(int max) {
67:
68: }
69: }
|