1 25 26 package org.objectweb.jonas.jtests.beans.relation.cascade; 27 28 import java.rmi.RemoteException ; 29 import javax.ejb.CreateException ; 30 import javax.ejb.EJBHome ; 31 import javax.ejb.FinderException ; 32 33 public interface CustomerHR extends EJBHome { 34 CustomerR create(Integer id) throws CreateException , RemoteException ; 35 CustomerR createWithAddress(Integer id, AddressDO addr) throws CreateException , RemoteException ; 36 CustomerR findByPrimaryKey(Integer id) throws FinderException , RemoteException ; 37 } 38 | Popular Tags |