1 22 package org.jboss.test.web.interfaces; 23 24 import javax.ejb.EJBLocalHome ; 25 import javax.ejb.CreateException ; 26 import javax.ejb.FinderException ; 27 28 32 public interface InternalEntityHome extends EJBLocalHome  33 { 34 InternalEntity create(int key, int value) 35 throws CreateException ; 36 37 InternalEntity findByPrimaryKey(Integer key) 38 throws FinderException ; 39 40 } | Popular Tags |