use of com.sun.jts.jta.TransactionManagerImpl in project Payara by payara.
the class JavaEETransactionManagerJTSDelegate method beginJTS.
public void beginJTS(int timeout) throws NotSupportedException, SystemException {
TransactionManagerImpl tm = (TransactionManagerImpl) tmLocal.get();
tm.begin(timeout);
((JavaEETransactionManagerSimplified) javaEETM).monitorTxBegin(tm.getTransaction());
}
Aggregations