1 2 package my.db.ebeans;3 4 5 /**6 * This is the local-home interface for DiscountCodeTbl enterprise bean.7 */8 public interface DiscountCodeTblLocalHome extends javax.ejb.EJBLocalHome {9 10 11 12 /**13 *14 */15 my.db.ebeans.DiscountCodeTblLocal findByPrimaryKey(java.lang.String key) throws javax.ejb.FinderException ;16 17 my.db.ebeans.DiscountCodeTblLocal create(java.lang.String discountCode, java.math.BigDecimal rate) throws javax.ejb.CreateException ;18 19 java.util.Collection findByDiscountCode(java.lang.String discountCode) throws javax.ejb.FinderException ;20 21 java.util.Collection findByRate(java.math.BigDecimal rate) throws javax.ejb.FinderException ;22 23 24 }25