001         package com.croftsoft.apps.wyrm.entity;
002    
003         import java.rmi.*;
004         import javax.ejb.*;
005    
006         /*********************************************************************
007         * Local home interface for player character EJB.
008         *
009         * @version
010         *   2002-10-01
011         * @since
012         *   2002-09-30
013         * @author
014         *   <a href="http://alumni.caltech.edu/~croft">David Wallace Croft</a>
015         *********************************************************************/
016    
017         public interface  PcLocalHome
018           extends EJBLocalHome
019         //////////////////////////////////////////////////////////////////////
020         //////////////////////////////////////////////////////////////////////
021         {
022    
023         public PcLocal  create ( )
024           throws CreateException, EJBException;
025    
026         public PcLocal  findByPrimaryKey ( Long  id )
027           throws FinderException, EJBException;
028    
029         //////////////////////////////////////////////////////////////////////
030         //////////////////////////////////////////////////////////////////////
031         }