01: /*
02: * Created on Dec 17, 2003
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.xdev.base.resource;
08:
09: /**
10: * @author AYegorov
11: *
12: * To change the template for this generated type comment go to
13: * Window>Preferences>Java>Code Generation>Code and Comments
14: */
15: public interface IDataSource {
16: public Object getConnection() throws Exception;
17:
18: public abstract void initialize() throws Exception;
19:
20: }
|