1 package org.objectweb.jonas.jtests.beans.ejbql; 2 3 import java.util.Collection ; 4 5 public interface AddressHomeLocal extends javax.ejb.EJBLocalHome { 7 8 public AddressLocal createAddress(String street, String city, String state, String zip ) 9 throws javax.ejb.CreateException ; 10 11 public AddressLocal findByPrimaryKey(Integer primaryKey) 12 throws javax.ejb.FinderException ; 13 14 public Collection findAllAddress() 15 throws javax.ejb.FinderException ; 16 } 17 | Popular Tags |