1 22 package org.jboss.test.testbeancluster.interfaces; 23 24 import java.util.Collection ; 25 import javax.ejb.EJBLocalHome ; 26 import javax.ejb.CreateException ; 27 import javax.ejb.FinderException ; 28 29 import org.jboss.test.testbeancluster.interfaces.EntityPK; 30 import org.jboss.test.testbean.interfaces.AComplexPK; 31 32 36 public interface EntityPKHome extends EJBLocalHome 37 { 38 public EntityPK create(boolean aBoolean, int anInt, long aLong, 39 double aDouble, String aString) 40 throws CreateException ; 41 42 public EntityPK createMETHOD(boolean aBoolean, int anInt, long aLong, 43 double aDouble, String aString) 44 throws CreateException ; 45 46 public EntityPK findByPrimaryKey(AComplexPK acomplexPK) 47 throws FinderException ; 48 49 public Collection findAll() 50 throws FinderException ; 51 } 52 | Popular Tags |