1 /* 2 * Created on May 24, 2004 3 * 4 * To change the template for this generated file go to 5 * Window>Preferences>Java>Code Generation>Code and Comments 6 */ 7 package com.lutris.appserver.server.sql; 8 9 import java.sql.SQLException; 10 11 /** 12 * @author Administrator 13 * 14 * To change the template for this generated type comment go to 15 * Window>Preferences>Java>Code Generation>Code and Comments 16 */ 17 public interface AbstractDBTransactionFactory { 18 public void setLogicalDb(LogicalDatabase ldb); 19 public LogicalDatabase getLogicalDb(); 20 public DBTransaction getTransaction(DBConnection conn) throws SQLException; 21 } 22