01: /*
02: * Created on May 24, 2004
03: *
04: * To change the template for this generated file go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package com.lutris.appserver.server.sql;
08:
09: import java.sql.SQLException;
10:
11: /**
12: * @author P.Djojic
13: * @author V.Puskas
14: */
15: public interface AbstractDBTransactionFactory {
16: public void setLogicalDb(LogicalDatabase ldb);
17:
18: public LogicalDatabase getLogicalDb();
19:
20: public DBTransaction getTransaction() throws SQLException;
21: }
|