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

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


      InitialContext ctx = new InitialContext();
      TransactionManager tm = (TransactionManager) ctx.lookup("java:/TransactionManager");
      tm.begin();
      try
      {
         bean.mandatory();
      }
      finally
      {
         tm.rollback();
      }
View Full Code Here


      SimpleContainer<?> container = bootstrap.lookup("TestContainer", SimpleContainer.class);
     
      InstanceTest bean = container.constructProxy(InstanceTest.class);
      try
      {
         bean.mandatory();
         fail("transaction is required");
      }
      catch(EJBTransactionRequiredException 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.