/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package org.jboss.test.cluster.ejb;

import java.rmi.RemoteException;
import java.rmi.dgc.VMID;
import javax.ejb.EJBObject;

/** The interface for the ejb called by the remote server ejb
 * 
 * @author Scott.Stark@jboss.org
 * @version $Revision: 1.1 $
 */
public interface CalleeRemote
   extends EJBObject
{
   public VMID call(String info) throws RemoteException;
}