1 25 26 28 package org.objectweb.jonas.jtests.beans.ebasic; 29 30 import java.rmi.RemoteException ; 31 import javax.ejb.EJBObject ; 32 33 public interface Simple extends EJBObject { 34 public int getNumTest() throws RemoteException ; 35 public void setNumTest(int num) throws RemoteException ; 36 public int getInfo() throws RemoteException ; 37 public void setInfo(int info) throws RemoteException ; 38 public String getTestName() throws RemoteException ; 39 public void setTestName(String name) throws RemoteException ; 40 public boolean loopBack() throws RemoteException ; 41 public boolean loopBackTx() throws RemoteException ; 42 } 43 | Popular Tags |