import java.util.Collection; import java.rmi.RemoteException; import javax.ejb.*; public interface DvdHome extends EJBHome { public Dvd create(String isbn, String title, String format) throws RemoteException, CreateException; public Dvd findByPrimaryKey(String isbn) throws FinderException, RemoteException; public Collection findByIsbn(String isbn) throws FinderException, RemoteException; public Collection findByTitle(String title) throws FinderException, RemoteException; public Collection findByTitleWith(String title) throws FinderException, RemoteException; }