Package | Description |
---|---|
net.sf.mmm.transaction.api |
Provides the API for transaction support.
|
net.sf.mmm.transaction.base |
Provides the base-implementation for transaction support.
|
net.sf.mmm.transaction.impl.jpa |
Provides the implementation for transaction support using JPA.
|
net.sf.mmm.transaction.impl.jta |
Provides the implementation for transaction support using JTA.
|
net.sf.mmm.transaction.impl.spring |
Provides the implementation for transaction support using spring-transaction.
|
Modifier and Type | Method and Description |
---|---|
<RESULT> RESULT |
TransactionExecutor.doInTransaction(Callable<RESULT> callable,
TransactionSettings settings)
This method executes the given
callable in the context of a transaction. |
<RESULT> RESULT |
TransactionExecutor.doInTransaction(TransactionCallable<RESULT> callable,
TransactionSettings settings)
This method executes the given
callable in the context of a transaction. |
Modifier and Type | Field and Description |
---|---|
private TransactionSettings |
AbstractTransactionExecutor.defaultSettings |
Modifier and Type | Method and Description |
---|---|
protected TransactionSettings |
AbstractTransactionExecutor.getDefaultSettings()
This method gets the default used if no
TransactionSettings are specified explicitly on a call of
doInTransaction . |
Modifier and Type | Method and Description |
---|---|
<RESULT> RESULT |
AbstractTransactionExecutor.doInTransaction(Callable<RESULT> callable,
TransactionSettings settings)
This method executes the given
callable in the context of a transaction. |
<RESULT> RESULT |
AbstractTransactionExecutor.doInTransaction(TransactionCallable<RESULT> callable,
TransactionSettings settings)
This method executes the given
callable in the context of a transaction. |
protected AbstractTransactionExecutor.AbstractTransactionAdapter<?> |
NoTransactionExecutor.openTransactionAdapter(TransactionSettings settings)
This method opens a new
TransactionAdapter . |
protected abstract AbstractTransactionExecutor.AbstractTransactionAdapter<?> |
AbstractTransactionExecutor.openTransactionAdapter(TransactionSettings settings)
This method opens a new
TransactionAdapter . |
void |
AbstractTransactionExecutor.setDefaultSettings(TransactionSettings settings)
This method sets the
default settings . |
Modifier and Type | Method and Description |
---|---|
protected JpaTransactionExecutor.JpaTransactionAdapter |
JpaTransactionExecutor.openTransactionAdapter(TransactionSettings settings)
This method opens a new
TransactionAdapter . |
Modifier and Type | Method and Description |
---|---|
protected JtaTransactionExecutor.JtaTransactionAdapter |
JtaTransactionExecutor.openTransactionAdapter(TransactionSettings settings)
This method opens a new
TransactionAdapter . |
Modifier and Type | Method and Description |
---|---|
protected SpringTransactionExecutor.SpringTransactionAdapter |
SpringTransactionExecutor.openTransactionAdapter(TransactionSettings settings)
This method opens a new
TransactionAdapter . |
Constructor and Description |
---|
SpringTransactionAdapter(TransactionSettings settings)
The constructor.
|
Copyright © 2001–2016 mmm-Team. All rights reserved.