001         package com.croftsoft.apps.wyrm.server;
002    
003         import javax.ejb.*;
004    
005         /*********************************************************************
006         * Local interface to the Wyrm server EJB.
007         *
008         * @version
009         *   2002-10-31
010         * @since
011         *   2002-10-31
012         * @author
013         *   <a href="http://alumni.caltech.edu/~croft">David Wallace Croft</a>
014         *********************************************************************/
015    
016         public interface  WyrmServerLocal
017           extends EJBLocalObject
018         //////////////////////////////////////////////////////////////////////
019         //////////////////////////////////////////////////////////////////////
020         {
021    
022         public Object  serve ( Object  request )
023           throws EJBException;
024    
025         //////////////////////////////////////////////////////////////////////
026         //////////////////////////////////////////////////////////////////////
027         }