1 2 8 29 package org.jboss.test.testbean.interfaces; 30 31 import javax.ejb.*; 32 import java.rmi.*; 33 34 35 public interface StatelessSession extends EJBObject { 36 37 public void callBusinessMethodA() throws RemoteException; 38 39 public String callBusinessMethodB() throws RemoteException; 40 41 public String callBusinessMethodB(String words) throws RemoteException; 42 43 public String callBusinessMethodC() throws RemoteException; 44 45 public void callBusinessMethodD() throws RemoteException, BusinessMethodException; 46 47 public String callBusinessMethodE() throws RemoteException; 48 49 public void testClassLoading() throws RemoteException, BusinessMethodException; 50 } 51 | Popular Tags |