1 2 package test; 3 4 import javax.ejb.CreateException ; 5 import javax.ejb.EJBLocalHome ; 6 import javax.ejb.FinderException ; 7 8 9 12 public interface MicroMarketsTblLocalHome extends EJBLocalHome { 13 14 MicroMarketsTblLocal findByPrimaryKey(String key) throws FinderException ; 15 16 public MicroMarketsTblLocal create(String zipCode, Double radius, Double areaLength, Double areaWidth) throws CreateException ; 17 18 19 } 20 | Popular Tags |