001 package com.croftsoft.apps.wyrm.server;
002
003 import javax.ejb.*;
004
005 /*********************************************************************
006 * Local home interface for 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 WyrmServerLocalHome
017 extends EJBLocalHome
018 //////////////////////////////////////////////////////////////////////
019 //////////////////////////////////////////////////////////////////////
020 {
021
022 public WyrmServerLocal create ( )
023 throws CreateException, EJBException;
024
025 //////////////////////////////////////////////////////////////////////
026 //////////////////////////////////////////////////////////////////////
027 }