BusinessObjectLocalHome.java |
/* * JBoss, the OpenSource WebOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.test.invokers.interfaces; import javax.ejb.CreateException; import javax.ejb.EJBLocalHome; import org.jboss.test.cts.interfaces.StatelessSessionLocal; /** Basic stateless session local home * * @author Scott.Stark@jboss.org * @version $Revision: 1.1 $ */ public interface BusinessObjectLocalHome extends EJBLocalHome { public BusinessObjectLocal create () throws CreateException; }
BusinessObjectLocalHome.java |