1 /*2 * Generated by XDoclet - Do not edit!3 */4 package test.interfaces;5 6 /**7 * Local home interface for Address.8 * @xdoclet-generated at 16-04-059 * @copyright The XDoclet Team10 * @author XDoclet11 * @version 1.2.312 */13 public interface AddressLocalHome14 extends javax.ejb.EJBLocalHome 15 {16 public static final String COMP_NAME="java:comp/env/ejb/AddressLocal";17 public static final String JNDI_NAME="AddressLocal";18 19 public test.interfaces.AddressLocal create(test.interfaces.AddressValue v)20 throws javax.ejb.CreateException ;21 22 public java.util.Collection findByStreet(java.lang.String street)23 throws javax.ejb.FinderException ;24 25 public java.util.Collection findByCity(java.lang.String city)26 throws javax.ejb.FinderException ;27 28 public java.util.Collection findByOwner(test.interfaces.Customer owner)29 throws javax.ejb.FinderException ;30 31 public test.interfaces.AddressLocal findByPrimaryKey(java.lang.String pk)32 throws javax.ejb.FinderException ;33 34 }35