Package org.jboss.test.ejb.passivationcl.stateful

Examples of org.jboss.test.ejb.passivationcl.stateful.StatefulSessionHome


   }

   public void testMain() throws Exception
   {
      Object ref = getInitialContext().lookup("StatefulSession");
      StatefulSessionHome home = (StatefulSessionHome) PortableRemoteObject.narrow(ref, StatefulSessionHome.class);
      StatefulSession stateful = home.create();
      stateful.test();

      int i = 5;
      while(!stateful.isPassivated())
      {
View Full Code Here

TOP

Related Classes of org.jboss.test.ejb.passivationcl.stateful.StatefulSessionHome

Copyright © 2018 www.massapicom. 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.