1 22 package org.jboss.test.security.interfaces; 23 24 import javax.ejb.*; 25 import java.rmi.*; 26 27 public interface StatelessSession extends EJBObject 28 { 29 30 public String echo(String arg) throws RemoteException; 31 34 public void noop() throws RemoteException; 35 39 public String forward(String echoArg) throws RemoteException; 40 41 public void npeError() throws RemoteException; 42 45 public void unchecked() throws RemoteException; 46 47 50 public void excluded() throws RemoteException; 51 } 52 | Popular Tags |