package ejava.examples.uid.ejb;

import java.rmi.RemoteException;

/**
   This interface defines the sole interface method for the UIDGenerator
   object.
*/
public interface UIDGeneratorBI {
   public UID createUID() throws RemoteException;
}
