package ejava.examples.uid.ejb;

import javax.ejb.EJBLocalHome;
import javax.ejb.FinderException;

/**
   This interface defines the local find method for locating the singleton
   UIDGenerator.
*/
public interface UIDGeneratorLocalHome extends EJBLocalHome {
   UIDGeneratorLocal findByPrimaryKey(Integer dummy) 
      throws FinderException;

   UIDGeneratorLocal find() throws FinderException;
}
