01: package org.objectweb.jonas.jtests.beans.ejbql;
02:
03: import java.rmi.RemoteException;
04:
05: public interface CabinRemote extends javax.ejb.EJBObject {
06: public String getName() throws RemoteException;
07:
08: public void setName(String str) throws RemoteException;
09:
10: public int getDeckLevel() throws RemoteException;
11:
12: public void setDeckLevel(int level) throws RemoteException;
13:
14: public int getShipId() throws RemoteException;
15:
16: public void setShipId(int sp) throws RemoteException;
17:
18: public int getBedCount() throws RemoteException;
19:
20: public void setBedCount(int bc) throws RemoteException;
21:
22: public Integer getId() throws RemoteException;
23: }
|