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