From: <pat...@us...> - 2009-01-21 21:09:47
|
Revision: 847 http://cishell.svn.sourceforge.net/cishell/?rev=847&view=rev Author: pataphil Date: 2009-01-21 21:09:43 +0000 (Wed, 21 Jan 2009) Log Message: ----------- Updated database service interface to not include methods it doesn't need/use. Modified Paths: -------------- trunk/core/org.cishell.service.database/src/org/cishell/service/database/DatabaseService.java Modified: trunk/core/org.cishell.service.database/src/org/cishell/service/database/DatabaseService.java =================================================================== --- trunk/core/org.cishell.service.database/src/org/cishell/service/database/DatabaseService.java 2009-01-21 20:57:39 UTC (rev 846) +++ trunk/core/org.cishell.service.database/src/org/cishell/service/database/DatabaseService.java 2009-01-21 21:09:43 UTC (rev 847) @@ -1,12 +1,5 @@ package org.cishell.service.database; -import java.sql.ResultSet; - -import javax.sql.DataSource; - public interface DatabaseService { - public DataSourceWithID createDatabase() throws DatabaseCreationException; - public DataSourceWithID createDatabase(ResultSet resultSet) throws DatabaseCreationException; - public DataSourceWithID copyDatabase(DataSourceWithID database) throws DatabaseCopyException; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |