HHH-11951 Improve TransactionStatus javadoc

This commit is contained in:
Guillaume Smet 2017-08-28 15:41:46 +02:00
parent e1faed4b89
commit 3ed4bfe830

View File

@ -13,15 +13,15 @@
*/ */
public enum TransactionStatus { public enum TransactionStatus {
/** /**
* The transaction has not yet been begun * The transaction has not yet been started.
*/ */
NOT_ACTIVE, NOT_ACTIVE,
/** /**
* The transaction has been begun, but not yet completed. * The transaction has been started, but not yet completed.
*/ */
ACTIVE, ACTIVE,
/** /**
* The transaction has been competed successfully. * The transaction has been completed successfully.
*/ */
COMMITTED, COMMITTED,
/** /**
@ -29,7 +29,7 @@ public enum TransactionStatus {
*/ */
ROLLED_BACK, ROLLED_BACK,
/** /**
* The transaction has been marked for rollback only. * The transaction has been marked for rollback only.
*/ */
MARKED_ROLLBACK, MARKED_ROLLBACK,
/** /**
@ -39,7 +39,7 @@ public enum TransactionStatus {
/** /**
* Status code indicating a transaction that has begun the second * Status code indicating a transaction that has begun the second
* phase of the two-phase commit protocol, but not yet completed * phase of the two-phase commit protocol, but not yet completed
* this phase * this phase.
*/ */
COMMITTING, COMMITTING,
/** /**