abstract class DelegatingTransactionDefinition : TransactionDefinition, Serializable
TransactionDefinition implementation that delegates all calls to a given target TransactionDefinition instance. Abstract because it is meant to be subclassed, with subclasses overriding specific methods that are not supposed to simply delegate to the target instance.
Author
Juergen Hoeller
Since
3.0
DelegatingTransactionDefinition(targetDefinition: TransactionDefinition)
Create a DelegatingTransactionAttribute for the given target attribute. |
open fun equals(other: Any?): Boolean |
|
open fun getIsolationLevel(): Int |
|
open fun getName(): String |
|
open fun getPropagationBehavior(): Int |
|
open fun getTimeout(): Int |
|
open fun hashCode(): Int |
|
open fun isReadOnly(): Boolean |
|
open fun toString(): String |