1 25 26 28 package org.objectweb.jonas.jtests.beans.fbasic; 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 } 41 | Popular Tags |