| StatefulSessionLocalHome.java |
/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.cts.interfaces;
import javax.ejb.CreateException;
import javax.ejb.EJBException;
import javax.ejb.EJBLocalHome;
/** The local home interface for stateful session tests
*
* @author adrian@jboss.org
* @version $Revision: 1.2 $
*/
public interface StatefulSessionLocalHome
extends EJBLocalHome
{
public StatefulSessionLocal create(String testName)
throws EJBException, CreateException;
}
| StatefulSessionLocalHome.java |