1 | A transaction attribute can have the following values: |
2 | NotSupported: Container invokes this method without a global transaction context. If a client invokes the call with a transaction context, the container suspends this transaction until the method call completes. |
3 | Required: method is invoked with a global transaction context. If the client's request is associated with a transaction context,, then this context is used. Otherwise, container starts a new transaction, enlists all the resources, invokes the method with this transaction context, and commits the transaction as soon as the method call completes. |
4 | Supports : method is invoked with a transaction context if the client's request is associated with one. Otherwise, the method is invoked without any transaction context. |