package ejava.ejb.uid;

import javax.ejb.EJBHome;
import javax.ejb.FinderException;
import java.rmi.RemoteException;

/**
   This interface defines the find method for locating the singleton
   UIDGenerator.
*/
public interface UIDGeneratorHome extends EJBHome {
   UIDGenerator findByPrimaryKey(Integer dummy) 
      throws FinderException, RemoteException;

   UIDGenerator find() throws FinderException, RemoteException;
}
