All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avaje.ebean.config.ExternalTransactionManager Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean.config;

/**
 * Provides awareness of externally managed transactions.
 */
public interface ExternalTransactionManager {

  /**
   * Set the transaction manager.
   * 

* This will change when SPI is published but will do for now. *

*/ void setTransactionManager(Object transactionManager); /** * Return the current transaction or null if there is none. */ Object getCurrentTransaction(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy