177178179180181182183184185186187
public Transaction beginRequiresNew() { try { TransactionManagerImpl tm = TransactionManagerImpl.getLocal(); Transaction xa = tm.suspend(); _ut.begin(); return xa; } catch (RuntimeException e) {
232233234235236237238239240241242
public Transaction beginNotSupported() { try { TransactionManagerImpl tm = TransactionManagerImpl.getLocal(); return tm.suspend(); } catch (RuntimeException e) { throw e; } catch (Exception e) { throw new EJBException(e); }
224225226227228229230231232233234
171172173174175176177178179180181