1 4 5 package org.objectweb.perseus.fos.api; 6 7 import javax.transaction.xa.Xid ; 8 9 13 public interface FosTransaction extends FosAccess { 14 17 void begin() throws FosException; 18 19 24 void begin(Xid xid) throws FosException; 25 26 30 boolean isActive(); 31 32 36 boolean prepare() throws FosException; 37 38 41 void commit() throws FosException; 42 43 46 void rollback() throws FosException; 47 } | Popular Tags |