1 25 26 package org.objectweb.jonas.jtests.beans.relation.cascade; 27 28 import java.util.Collection ; 29 import javax.ejb.CreateException ; 30 import javax.ejb.EJBLocalHome ; 31 import javax.ejb.FinderException ; 32 33 public interface AddressHL extends EJBLocalHome { 34 AddressL create(String street, String city, String state, String zip) throws CreateException ; 35 AddressL create(AddressDO addr, CustomerL customer) throws CreateException ; 36 AddressL findByPrimaryKey(Integer primaryKey) throws FinderException ; 37 Collection findAllAddress() throws FinderException ; 38 } 39 | Popular Tags |