From: <mwl...@us...> - 2009-01-22 16:58:41
|
Revision: 850 http://cishell.svn.sourceforge.net/cishell/?rev=850&view=rev Author: mwlinnem Date: 2009-01-22 16:58:37 +0000 (Thu, 22 Jan 2009) Log Message: ----------- Corrected the interface to implement DataSource. Modified Paths: -------------- trunk/core/org.cishell.service.database/src/org/cishell/service/database/DataSourceWithID.java Modified: trunk/core/org.cishell.service.database/src/org/cishell/service/database/DataSourceWithID.java =================================================================== --- trunk/core/org.cishell.service.database/src/org/cishell/service/database/DataSourceWithID.java 2009-01-22 16:56:57 UTC (rev 849) +++ trunk/core/org.cishell.service.database/src/org/cishell/service/database/DataSourceWithID.java 2009-01-22 16:58:37 UTC (rev 850) @@ -4,8 +4,10 @@ import java.sql.Connection; import java.sql.SQLException; -public interface DataSourceWithID { +import javax.sql.DataSource; +public interface DataSourceWithID extends DataSource { + public abstract int getID(); public abstract Connection getConnection() throws SQLException; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |