Package org.jboss.ejb3.test.tx.instance

Examples of org.jboss.ejb3.test.tx.instance.InstanceTest.never()


      InitialContext ctx = new InitialContext();
      TransactionManager tm = (TransactionManager) ctx.lookup("java:/TransactionManager");
      tm.begin();
      try
      {
         bean.never();
         fail("never should not allow a transaction");
      }
      catch(EJBException e)
      {
         // Good
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.