/*
 * JBoss, the OpenSource WebOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.test.security.interfaces;

import javax.ejb.EJBLocalObject;

/** A session interface used to test 
 * @author Scott.Stark@jboss.org
 * @version $Revision: 1.1 $
 */ 
public interface CalledSessionLocal extends EJBLocalObject
{
   /** This method should call invokeEcho on a CalledSession */
   public String callLocalEcho(String arg);
   /** Calls StatelessSessionLocal.echo */
   public String invokeEcho(String arg);
}