1 package org.objectweb.jonas.jtests.beans.ejbql; 2 3 import java.rmi.RemoteException ; 4 5 public interface CabinRemote extends javax.ejb.EJBObject { 6 public String getName() throws RemoteException ; 7 public void setName(String str) throws RemoteException ; 8 public int getDeckLevel() throws RemoteException ; 9 public void setDeckLevel(int level) throws RemoteException ; 10 public int getShipId() throws RemoteException ; 11 public void setShipId(int sp) throws RemoteException ; 12 public int getBedCount() throws RemoteException ; 13 public void setBedCount(int bc) throws RemoteException ; 14 public Integer getId() throws RemoteException ; 15 } 16 | Popular Tags |