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 InsuranceHR extends EJBHome { 35 InsuranceR findByPrimaryKey(Integer primaryKey) throws RemoteException , FinderException ; 36 Collection findByNumber(String number) throws RemoteException , FinderException ; 37 Collection findAllInsurance() throws RemoteException , FinderException ; 38 } 39 | Popular Tags |