01: // BDate.java
02:
03: package org.objectweb.jonas.jtests.beans.ebasic;
04:
05: import java.rmi.RemoteException;
06: import javax.ejb.EJBObject;
07:
08: /**
09: * BDate remote interface
10: */
11: public interface BDate extends EJBObject {
12: public int getField1() throws RemoteException;
13:
14: public void setField1(int f1) throws RemoteException;
15:
16: public int getField2() throws RemoteException;
17:
18: public void setField2(int f2) throws RemoteException;
19:
20: public java.util.Date getField3() throws RemoteException;
21:
22: public void setField3(java.util.Date f3) throws RemoteException;
23:
24: }
|