01: /* JFox, the OpenSource J2EE Application Server
02: *
03: * Copyright (C) 2002 huihoo.com
04: * Distributable under GNU LGPL license
05: * See the GNU Lesser General Public License for more details.
06: */
07:
08: package org.huihoo.jfox.datasource;
09:
10: import org.huihoo.jfox.service.ComponentSupportMBean;
11:
12: /**
13: *
14: * @author <a href="mailto:kelvin_wym@hotmail.com">Kelvin Wu</a>
15: */
16:
17: public interface PoolDataSourceMBean extends ComponentSupportMBean {
18: void setDbURL(String dbUrl);
19:
20: String getDbURL();
21:
22: void setDbDriver(String driver);
23:
24: String getDbDriver();
25:
26: void setUser(String user);
27:
28: String getUser();
29:
30: void setPassword(String password);
31:
32: String getPassword();
33:
34: }
|