1 /*2 * StatefulLRRemoteHome.java3 *4 * Created on Feb 15, 2007, 4:02:47 PM5 *6 * To change this template, choose Tools | Template Manager7 * and open the template in the editor.8 */9 10 package statefullr;11 12 import java.rmi.RemoteException ;13 import javax.ejb.CreateException ;14 import javax.ejb.EJBHome ;15 16 /**17 *18 * @author klingo19 */20 public interface StatefulLRRemoteHome extends EJBHome {21 22 statefullr.StatefulLRRemote create() throws CreateException , RemoteException ;23 24 }25