1 15 package org.apache.tapestry.vlib.ejb; 16 17 import java.rmi.RemoteException ; 18 19 import javax.ejb.CreateException ; 20 import javax.ejb.EJBHome ; 21 import javax.ejb.FinderException ; 22 23 30 31 public interface IPublisherHome extends EJBHome  32 { 33 public IPublisher create(String name) throws CreateException , RemoteException ; 34 35 public IPublisher findByPrimaryKey(Integer key) throws FinderException , RemoteException ; 36 37 41 42 public IPublisher findByName(String name) throws FinderException , RemoteException ; 43 44 } | Popular Tags |