public interface Status
Modifier and Type | Field and Description |
---|---|
static int |
STATUS_ACTIVE
Status code indicating an active transaction.
|
static int |
STATUS_COMMITTED
Status code indicating a transaction that has been committed.
|
static int |
STATUS_COMMITTING
Status code indicating a transaction that has begun the second
phase of the two-phase commit protocol, but not yet completed
this phase.
|
static int |
STATUS_MARKED_ROLLBACK
Status code indicating a transaction that has been marked for
rollback only.
|
static int |
STATUS_NO_TRANSACTION
Status code indicating that no transaction exists.
|
static int |
STATUS_PREPARED
Status code indicating a transaction that has completed the first
phase of the two-phase commit protocol, but not yet begun the
second phase.
|
static int |
STATUS_PREPARING
Status code indicating a transaction that has begun the first
phase of the two-phase commit protocol, not not yet completed
this phase.
|
static int |
STATUS_ROLLEDBACK
Status code indicating a transaction that has been rolled back.
|
static int |
STATUS_ROLLING_BACK
Status code indicating a transaction that is in the process of
rolling back.
|
static int |
STATUS_UNKNOWN
Status code indicating that the transaction status could not 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
Copyright © 2019 JBoss by Red Hat. All rights reserved.