1 25 26 package org.objectweb.jonas.jtests.beans.relation.cascade; 27 28 import java.rmi.RemoteException ; 29 import java.util.Collection ; 30 31 import javax.ejb.EJBHome ; 32 import javax.ejb.FinderException ; 33 34 public interface AddressHR extends EJBHome { 35 AddressR findByPrimaryKey(Integer primaryKey) throws RemoteException , FinderException ; 36 Collection findByZip(String zip) throws RemoteException , FinderException ; 37 Collection findAllAddress() throws RemoteException , FinderException ; 38 } 39 | Popular Tags |