1 2 package my.db.ebeans;3 4 5 /**6 * This is the local-home interface for MicroMarketsTbl enterprise bean.7 */8 public interface MicroMarketsTblLocalHome extends javax.ejb.EJBLocalHome {9 10 11 12 /**13 *14 */15 my.db.ebeans.MicroMarketsTblLocal findByPrimaryKey(java.lang.String key) throws javax.ejb.FinderException ;16 17 my.db.ebeans.MicroMarketsTblLocal create(java.lang.String zipCode, java.lang.Double radius, java.lang.Double areaLength, java.lang.Double areaWidth) throws javax.ejb.CreateException ;18 19 java.util.Collection findByZipCode(java.lang.String zipCode) throws javax.ejb.FinderException ;20 21 java.util.Collection findByRadius(java.lang.Double radius) throws javax.ejb.FinderException ;22 23 java.util.Collection findByAreaLength(java.lang.Double areaLength) throws javax.ejb.FinderException ;24 25 java.util.Collection findByAreaWidth(java.lang.Double areaWidth) throws javax.ejb.FinderException ;26 27 28 }29