Searched refs:prevTx (Results 1 - 4 of 4) sorted by relevance

/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DBaseContainer.java4547 Transaction prevTx = context.getTransaction();
4557 if ( isStatefulSession && prevTx != null
4558 && prevTx.getStatus() != Status.STATUS_NO_TRANSACTION ) {
4559 // Note: if prevTx != null , then it means
4567 transactionManager.resume(prevTx);
4579 checkUnfinishedTx(prevTx, inv);
4588 useClientTx(prevTx, inv);
4597 startNewTx(prevTx, inv);
4601 useClientTx(prevTx, inv);
4608 startNewTx(prevTx, in
4644 checkUnfinishedTx(Transaction prevTx, EjbInvocation inv) argument
4660 startNewTx(Transaction prevTx, EjbInvocation inv) argument
4697 useClientTx(Transaction prevTx, EjbInvocation inv) argument
[all...]
H A DAbstractSingletonContainer.java291 protected void checkUnfinishedTx(Transaction prevTx, EjbInvocation inv) { argument
H A DStatefulSessionContainer.java1079 Transaction prevTx = sc.getTransaction();
1081 if (prevTx != null && prevTx.getStatus() !=
1083 prevTx.setRollbackOnly();
H A DEntityContainer.java1359 protected void checkUnfinishedTx(Transaction prevTx, EjbInvocation inv) { argument
1362 if ( (prevTx != null) &&
1363 prevTx.getStatus() != Status.STATUS_NO_TRANSACTION ) {

Completed in 59 milliseconds