1 22 package org.jboss.test.testbean.interfaces; 23 24 25 import javax.ejb.EJBHome ; 26 import java.rmi.RemoteException ; 27 import javax.ejb.CreateException ; 28 import javax.ejb.FinderException ; 29 30 public interface EnterpriseEntityHome extends EJBHome { 31 32 public EnterpriseEntity create(String name) 33 throws RemoteException , CreateException ; 34 35 public EnterpriseEntity createMETHOD(String name) 36 throws RemoteException , CreateException ; 37 38 public EnterpriseEntity findByPrimaryKey(String name) 39 throws RemoteException , FinderException ; 40 41 } 42 | Popular Tags |