1 2 8 29 package org.jboss.test.testbean.interfaces; 30 31 import javax.ejb.*; 32 import java.rmi.*; 33 34 public interface StatefulSession extends EJBObject { 35 36 public String callBusinessMethodA() throws RemoteException; 37 38 public String callBusinessMethodB() throws RemoteException; 39 40 public String callBusinessMethodB(String words) throws RemoteException; 41 } 42 43 | Popular Tags |