1 22 package org.jboss.test.perf.interfaces; 23 24 import java.util.Collection ; 25 import javax.ejb.CreateException ; 26 import javax.ejb.EJBLocalHome ; 27 import javax.ejb.FinderException ; 28 29 33 public interface EntityLocalHome extends EJBLocalHome  34 { 35 EntityLocal create(int key, int value) 36 throws CreateException ; 37 38 EntityLocal findByPrimaryKey(EntityPK primaryKey) 39 throws FinderException ; 40 41 Collection findInRange(int min, int max) 42 throws FinderException ; 43 } 44 45 | Popular Tags |