1 /* JFox, the OpenSource J2EE Application Server2 *3 * Distributable under GNU LGPL license by gun.org4 * more details please visit http://www.huihoo.org/jfox5 */6 package org.jfox.examples.ejb.stateless;7 8 import java.rmi.RemoteException ;9 import javax.ejb.EJBObject ;10 11 /**12 * @author <a HREF="mailto:young_yy@hotmail.com">Young Yang</a>13 */14 15 public interface TestStateless extends EJBObject {16 17 public String getVoice() throws RemoteException ;18 19 public int getCount() throws RemoteException ;20 21 }22