1 /* *************************************2 * *3 * JBoss: The OpenSource J2EE WebOS *4 * *5 * Distributable under LGPL license. *6 * See terms of license at gnu.org. *7 * *8 ************************************* */9 package org.jboss.test.aop.scoped.ear.ejb;10 11 import java.rmi.RemoteException ;12 13 import javax.ejb.EJBObject ;14 15 /** 16 * 17 * @author <a HREF="mailto:kabirkhan@bigfoot.com">Kabir Khan</a>18 *19 */20 public interface ExampleSession extends EJBObject {21 String getValue(String s) throws RemoteException ;22 }23