1 21 22 package org.apache.derby.iapi.store.access; 23 24 import org.apache.derby.iapi.error.StandardException; 25 26 import org.apache.derby.iapi.store.access.TransactionController; 27 28 55 56 public interface XATransactionController extends TransactionController 57 { 58 62 public static final int XA_RDONLY = 1; 63 public static final int XA_OK = 2; 64 65 78 public void xa_commit( 79 boolean onePhase) 80 throws StandardException; 81 82 99 public int xa_prepare() 100 throws StandardException; 101 102 114 public void xa_rollback() 115 throws StandardException; 116 } 117 | Popular Tags |