1 package edu.rice.rubis.beans; 2 3 import java.rmi.RemoteException ; 4 import javax.ejb.CreateException ; 5 import javax.ejb.FinderException ; 6 import javax.ejb.RemoveException ; 7 import javax.ejb.EJBHome ; 8 9 10 11 public interface IDManagerHome extends EJBHome { 12 13 18 public IDManager create() throws CreateException , RemoteException , RemoveException ; 19 20 21 29 public IDManager findByPrimaryKey(IDManagerPK id) throws FinderException , RemoteException ; 30 31 } 32 | Popular Tags |