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