public interface Status
| Modifier and Type | Field and Description | 
|---|---|
static int | 
STATUS_ACTIVE
A transaction is associated with the target object and it is in the
 active state. 
 | 
static int | 
STATUS_COMMITTED
A transaction is associated with the target object and it has been
 committed. 
 | 
static int | 
STATUS_COMMITTING
A transaction is associated with the target object and it is in the
 process of committing. 
 | 
static int | 
STATUS_MARKED_ROLLBACK
A transaction is associated with the target object and it has been
 marked for rollback, perhaps as a result of a setRollbackOnly operation. 
 | 
static int | 
STATUS_NO_TRANSACTION
No transaction is currently associated with the target object. 
 | 
static int | 
STATUS_PREPARED
A transaction is associated with the target object and it has been
 prepared. 
 | 
static int | 
STATUS_PREPARING
A transaction is associated with the target object and it is in the
 process of preparing. 
 | 
static int | 
STATUS_ROLLEDBACK
A transaction is associated with the target object and the outcome
 has been determined to be rollback. 
 | 
static int | 
STATUS_ROLLING_BACK
A transaction is associated with the target object and it is in the
 process of rolling back. 
 | 
static int | 
STATUS_UNKNOWN
A transaction is associated with the target object but its
 current status cannot be determined. 
 | 
static final int STATUS_ACTIVE
static final int STATUS_MARKED_ROLLBACK
static final int STATUS_PREPARED
static final int STATUS_COMMITTED
static final int STATUS_ROLLEDBACK
static final int STATUS_UNKNOWN
static final int STATUS_NO_TRANSACTION
static final int STATUS_PREPARING
static final int STATUS_COMMITTING
static final int STATUS_ROLLING_BACK