in tx-control-services/tx-control-service-local/src/main/java/org/apache/aries/tx/control/service/local/impl/TransactionContextImpl.java [63:72]
public boolean getRollbackOnly() throws IllegalStateException {
switch (tranStatus.get()) {
case MARKED_ROLLBACK:
case ROLLING_BACK:
case ROLLED_BACK:
return true;
default:
return false;
}
}