01: package org.geotools.data.jdbc.datasource;
02:
03: import java.sql.SQLException;
04:
05: import javax.sql.DataSource;
06:
07: public interface ManageableDataSource extends DataSource {
08: /**
09: * Closes up the datasource, frees all of its resources. No other connection
10: * can be gathered from this DataSource once close() has been called
11: *
12: */
13: public void close() throws SQLException;
14: }
|