01: package net.sourceforge.jaxor.api;
02:
03: import java.io.Serializable;
04: import java.sql.Connection;
05:
06: /*
07: * User: Mike
08: * Date: Jul 16, 2003
09: * Time: 5:10:19 PM
10: */
11:
12: public interface JaxorTransaction extends Serializable {
13: Connection getConnection();
14:
15: void commit();
16:
17: void end();
18:
19: void rollback(Exception e);
20: }
|