69707172737475767778
return exception; } public void commit(Xid xid, boolean onePhase) throws XAException { try { remote.commit(new SerializableXid(xid), onePhase); } catch (RemoteException e) { throw getXAException(e); } }
77787980818283848586
} } public void end(Xid xid, int flags) throws XAException { try { remote.end(new SerializableXid(xid), flags); } catch (RemoteException e) { throw getXAException(e); } }
85868788899091929394
} } public void forget(Xid xid) throws XAException { try { remote.forget(new SerializableXid(xid)); } catch (RemoteException e) { throw getXAException(e); } }
101102103104105106107108109110
} } public int prepare(Xid xid) throws XAException { try { return remote.prepare(new SerializableXid(xid)); } catch (RemoteException e) { throw getXAException(e); } }
117118119120121122123124125126
} } public void rollback(Xid xid) throws XAException { try { remote.rollback(new SerializableXid(xid)); } catch (RemoteException e) { throw getXAException(e); } }
133134135136137138139140141142
} } public void start(Xid xid, int flags) throws XAException { try { remote.start(new SerializableXid(xid), flags); } catch (RemoteException e) { throw getXAException(e); } }
9596979899100101102103104105
public Xid[] recover(int flag) throws XAException { try { Xid[] xids = resource.recover(flag); for (int i = 0; i < xids.length; i++) { xids[i] = new SerializableXid(xids[i]); } return xids; } catch (XAException e) { throw getXAException(e); }
9293949596979899100101102
61626364656667686970