case Status.STATUS_PREPARED:
case Status.STATUS_ACTIVE:
// Can only prepare an active transaction. And error
// is reported as vote to rollback the transaction.
try {
return tx.prepare() ? XA_OK : XA_RDONLY;
} catch (TransactionAbortedException except) {
throw new XAException(XAException.XA_RBROLLBACK);
} catch (IllegalStateException except) {
throw new XAException(XAException.XAER_PROTO);