1 22 package org.jboss.test.testbeancluster.interfaces; 23 24 import java.rmi.RemoteException ; 25 import javax.ejb.EJBObject ; 26 27 33 public interface StatelessSession extends EJBObject  34 { 35 public void callBusinessMethodA() 36 throws RemoteException ; 37 public String callBusinessMethodB(String jndiURL) 38 throws RemoteException ; 39 40 public void resetNumberOfCalls() 41 throws RemoteException ; 42 43 public void makeCountedCall() 44 throws RemoteException ; 45 46 public long getCallCount() 47 throws RemoteException ; 48 49 public String getBindAddress() 50 throws RemoteException ; 51 } 52 | Popular Tags |