77787980818283848586
} } public void forget(Xid xid) throws XAException { try { remote.forget(new SerializableXid(xid)); } catch (RemoteException e) { throw getXAException(e); } }
93949596979899100101102
} } public int prepare(Xid xid) throws XAException { try { return remote.prepare(new SerializableXid(xid)); } catch (RemoteException e) { throw getXAException(e); } }
109110111112113114115116117118
} } public void rollback(Xid xid) throws XAException { try { remote.rollback(new SerializableXid(xid)); } catch (RemoteException e) { throw getXAException(e); } }
125126127128129130131132133134
} } public void start(Xid xid, int flags) throws XAException { try { remote.start(new SerializableXid(xid), flags); } catch (RemoteException e) { throw getXAException(e); } }