package mypackage3; import javax.ejb.*; import java.rmi.RemoteException; import java.util.Collection; public interface KundeHome extends EJBHome { Kunde create() throws RemoteException, CreateException; Kunde create(String navn) throws RemoteException, CreateException; Collection findAll() throws RemoteException, FinderException; Kunde findByPrimaryKey(String navn) throws RemoteException, FinderException; Kunde findByNavn(String navn) throws RemoteException, FinderException; Collection findDemMedPositivKredit() throws RemoteException, FinderException; }