1 25 26 package org.objectweb.easybeans.tests.common.ejbs.stateless.containermanaged; 27 28 import java.sql.SQLException ; 29 30 import javax.naming.NamingException ; 31 32 38 public interface ItfDatabaseManager { 39 40 47 void deleteTable(final String dbName, final String tableName) throws NamingException , SQLException ; 48 49 56 void verifyTable(final String dbName, final String tableName) throws NamingException , SQLException ; 57 58 65 void insertTable(final String dbName, final String tableName) throws NamingException , SQLException ; 66 67 } 68 | Popular Tags |