1:package is346;
   2:
   3:import javax.ejb.EJBLocalHome;
   4:import javax.ejb.CreateException;
   5:import javax.ejb.FinderException;
   6:
   7:public interface ArtistHome
   8:    extends EJBLocalHome {
   9:  public Artist create(String name) throws CreateException;
  10:
  11:  public Artist findByPrimaryKey(Integer id) throws
  12:      FinderException;
  13:}