mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#1758 - Error when using ebean 11.41.1 and ebean-spring-txn 11.10.4
Fix method visibility restoring those methods as public
This commit is contained in:
@@ -40,4 +40,19 @@ public interface SpiTransactionManager {
|
||||
*/
|
||||
void externalRemoveTransaction();
|
||||
|
||||
/**
|
||||
* Notify of a transaction commit.
|
||||
*/
|
||||
void notifyOfCommit(SpiTransaction transaction);
|
||||
|
||||
/**
|
||||
* Notify of a transaction rollback.
|
||||
*/
|
||||
void notifyOfRollback(SpiTransaction transaction, Throwable cause);
|
||||
|
||||
/**
|
||||
* Notify of a query only transaction commit.
|
||||
*/
|
||||
void notifyOfQueryOnly(SpiTransaction transaction);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user