www.pudn.com > 200513174851152(JSP+wml).zip > ItemHome.java


import java.rmi.*; 
import javax.ejb.*; 
import java.util.Collection; 
 
public interface ItemHome extends EJBHome 
{ 
	public Item create(String id,String name,String description) 
		throws CreateException,RemoteException; 
	 
	public Item findByPrimaryKey(String primaryKey) 
		throws FinderException,RemoteException; 
		 
	public Collection findAll() 
		throws FinderException,RemoteException; 
}