import java.util.Collection; import java.rmi.RemoteException; import javax.ejb.*; public interface CmDvdHome extends EJBHome { public CmDvd create(String isbn, String title, String format) throws RemoteException, CreateException; public CmDvd 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; public Collection findAllTitles() throws FinderException, RemoteException; }