/* ************************************* * * * JBoss: The OpenSource J2EE WebOS * * * * Distributable under LGPL license. * * See terms of license at gnu.org. * * * ************************************* */ package org.jboss.injbossaop.ejb; import java.rmi.RemoteException; import javax.ejb.EJBObject; import org.jboss.injbossaop.lib.ExampleValue; /** * * @author Kabir Khan * */ public interface ExampleSession extends EJBObject { ExampleValue getValue(String s) throws RemoteException; }