[framework] TxCore → common-framework (ACM-FW-001)
This commit is contained in:
parent
7b4c48295d
commit
78d01f2429
1 changed files with 12 additions and 0 deletions
|
|
@ -0,0 +1,12 @@
|
|||
package com.klaro.acquirecore.framework;
|
||||
|
||||
/**
|
||||
* Transaction lifecycle states mirroring C tx_status enum.
|
||||
*/
|
||||
public enum TxStatus {
|
||||
INITIAL,
|
||||
ACTIVE,
|
||||
COMMITTED,
|
||||
ROLLED_BACK,
|
||||
FAILED
|
||||
}
|
||||
Reference in a new issue