Example usage for Java javax.transaction Status fields, constructors, methods, implement or subclass
The text is from its open source code.
int | STATUS_ACTIVE A transaction is associated with the target object and it is in the active state. |
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. |
int | STATUS_PREPARED A transaction is associated with the target object and it has been prepared. |
int | STATUS_COMMITTED A transaction is associated with the target object and it has been committed. |
int | STATUS_ROLLEDBACK A transaction is associated with the target object and the outcome has been determined to be rollback. |
int | STATUS_UNKNOWN A transaction is associated with the target object but its current status cannot be determined. |
int | STATUS_NO_TRANSACTION No transaction is currently associated with the target object. |
int | STATUS_PREPARING A transaction is associated with the target object and it is in the process of preparing. |
int | STATUS_COMMITTING A transaction is associated with the target object and it is in the process of committing. |
int | STATUS_ROLLING_BACK A transaction is associated with the target object and it is in the process of rolling back. |
String | toString() Returns a string representation of the object. |