001         package com.croftsoft.apps.vaft.core;
002    
003         import java.rmi.*;
004    
005         import com.croftsoft.core.role.actor.Actor;
006    
007         /*********************************************************************
008         * <P>
009         * @author
010         *   <A HREF="http://www.alumni.caltech.edu/~croft">David W. Croft</A>
011         * @version
012         *   1998-04-26
013         *********************************************************************/
014    
015         public interface  HostRemote extends Remote
016         //////////////////////////////////////////////////////////////////////
017         //////////////////////////////////////////////////////////////////////
018         {
019    
020         public void  host ( Actor  actor ) throws RemoteException;
021    
022         //////////////////////////////////////////////////////////////////////
023         //////////////////////////////////////////////////////////////////////
024         }