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