01: /*
02: * Created on Dec 22, 2004
03: */
04: package uk.org.ponder.transaction;
05:
06: /**
07: * Intented to wrap the delivery point of a flat transaction.
08: * @author Antranig Basman (antranig@caret.cam.ac.uk)
09: *
10: */
11: public interface TransactionFactory {
12: public Transaction beginTransaction();
13: }
|