// CategoryHome.java

   package Category;

   import java.rmi.RemoteException;
   import java.util.Enumeration;
   import javax.ejb.CreateException;
   import javax.ejb.EJBHome;
   import javax.ejb.FinderException;

/**
 * Home interface for the bean Category
 */
   public interface CategoryHome extends EJBHome {
      Category create() throws CreateException, RemoteException;
      Category findByPrimaryKey(java.lang.Object pk) throws FinderException, RemoteException;
   
      Enumeration findAllCategory() throws FinderException, RemoteException;
   }
