1 3 package org.objectweb.jonas.jtests.beans.ebasic; 4 5 import java.rmi.RemoteException ; 6 import javax.ejb.EJBObject ; 7 8 11 public interface BDate extends EJBObject { 12 public int getField1() throws RemoteException ; 13 public void setField1(int f1) throws RemoteException ; 14 15 public int getField2() throws RemoteException ; 16 public void setField2(int f2) throws RemoteException ; 17 18 public java.util.Date getField3() throws RemoteException ; 19 public void setField3(java.util.Date f3) throws RemoteException ; 20 21 22 } 23 | Popular Tags |