Interface TransactionOperationsManager
-
- All Known Implementing Classes:
EjbInvocation
@Contract public interface TransactionOperationsManagerTransactionOperationsManager interface to be used by various components to perform notifications by UserTransaction instance.- Author:
- Marina Vatkina
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddoAfterUtxBegin()Called by the UserTransaction when transaction is started.voiduserTransactionLookupAllowed()Called by the UserTransaction lookup to verify access to the UserTransaction itself.booleanuserTransactionMethodsAllowed()Called by the UserTransaction implementation to verify access to the UserTransaction methods.
-
-
-
Method Detail
-
userTransactionMethodsAllowed
boolean userTransactionMethodsAllowed()
Called by the UserTransaction implementation to verify access to the UserTransaction methods.
-
userTransactionLookupAllowed
void userTransactionLookupAllowed() throws NameNotFoundExceptionCalled by the UserTransaction lookup to verify access to the UserTransaction itself.- Throws:
NameNotFoundException
-
doAfterUtxBegin
void doAfterUtxBegin()
Called by the UserTransaction when transaction is started.
-
-