1 24 25 26 package org.objectweb.jonas.jtests.beans.ebasic; 27 28 import java.rmi.RemoteException ; 29 30 import javax.ejb.EJBObject ; 31 32 35 public interface pkautoObject extends EJBObject { 36 public int getField1() throws RemoteException ; 37 public void setField1(int f1) throws RemoteException ; 38 39 public int getField2() throws RemoteException ; 40 public void setField2(int f2) throws RemoteException ; 41 42 } 43 | Popular Tags |