1 package edu.rice.rubis.beans;2 3 import java.rmi.RemoteException ;4 import javax.ejb.CreateException ;5 import javax.ejb.EJBLocalHome ;6 7 /** This is the local Home interface of the SB_Auth Bean */8 9 public interface SB_AuthLocalHome extends EJBLocalHome {10 11 /**12 * This method is used to create a new Bean.13 *14 * @return session bean15 */16 public SB_AuthLocal create() throws CreateException ;17 18 }19