
sf.jooq.spring.SpringTransaction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sorm Show documentation
Show all versions of sorm Show documentation
java jpa tool for spring
The newest version!
package sf.jooq.spring;
import org.jooq.Transaction;
import org.springframework.transaction.TransactionStatus;
class SpringTransaction implements Transaction {
final TransactionStatus tx;
SpringTransaction(TransactionStatus tx) {
this.tx = tx;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy