You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.7 KiB
80 lines
2.7 KiB
package com.fr.third.javax.transaction; |
|
|
|
/** |
|
* TransactionSynchronizationRegistry. |
|
* |
|
* @author <a href="adrian@jboss.com">Adrian Brock</a> |
|
* @version $Revision$ |
|
*/ |
|
public interface TransactionSynchronizationRegistry |
|
{ |
|
/** |
|
* An object that has the same equals/hashCode behaviour |
|
* as the transaction currently associated with the thread |
|
* |
|
* @return the key or null if there is no current transaction |
|
*/ |
|
Object getTransactionKey(); |
|
|
|
/** |
|
* Get the transaction status of the current thread |
|
* |
|
* @return the status |
|
*/ |
|
int getTransactionStatus(); |
|
|
|
/** |
|
* Get the rollback status of the transaction associated with the |
|
* current thread. |
|
* |
|
* @return true when the transaction is rollback only |
|
* @throws IllegalStateException if there is no current transaction |
|
*/ |
|
boolean getRollbackOnly() throws IllegalStateException; |
|
|
|
/** |
|
* Set the transaction associated with the current thread to force a rollback |
|
* |
|
* @throws IllegalStateException if there is no current transaction |
|
*/ |
|
void setRollbackOnly() throws IllegalStateException; |
|
|
|
/** |
|
* Add a transaction synchronization that is invoked "last", |
|
* i.e. after SessionSynchronizations and directly registered transaction synchronizations.<p> |
|
* |
|
* The beforeCompletion is invoked in the context of the transaction, |
|
* the afterCompletion in an undefined transaction context. |
|
* Other context is the same as when the one used to register the synchronization.<p> |
|
* |
|
* Access to "user components" is not allowed, e.g. ejb bean methods.<p> |
|
* |
|
* Access to other resources, e.g. jca, is allowed in the beforeCompletion, |
|
* but not transactional work is allowed in the afterCompletion. e.g. |
|
* typically only "close()" is allowed. |
|
* |
|
* @param sync the synchronization |
|
* @throws IllegalStateException if there is no current transaction |
|
*/ |
|
void registerInterposedSynchronization(Synchronization sync) throws IllegalStateException; |
|
|
|
/** |
|
* Get a transaction local for the current transaction |
|
* |
|
* @param key the key to the value |
|
* @return the value |
|
* @throws IllegalStateException if there is no current transaction |
|
* @throws NullPointerException if the key is null |
|
*/ |
|
Object getResource(Object key) throws IllegalStateException; |
|
|
|
/** |
|
* Set a transaction local for the current transaction |
|
* |
|
* @param key the key to the value |
|
* @param value the value |
|
* @throws IllegalStateException if there is no current transaction |
|
* @throws NullPointerException if the key is null |
|
*/ |
|
void putResource(Object key, Object value) throws IllegalStateException; |
|
}
|
|
|