1 22 package org.jboss.test.web.interfaces; 23 24 import javax.ejb.EJBObject ; 25 import java.rmi.RemoteException ; 26 27 32 public interface StatelessSession extends EJBObject  33 { 34 35 public String echo(String arg) throws RemoteException ; 36 37 39 public void noop(ReferenceTest test, boolean optimized) throws RemoteException ; 40 41 42 public String forward(String echoArg) throws RemoteException ; 43 44 45 public ReturnData getData() throws RemoteException ; 46 } 47 | Popular Tags |