//Cabin.javapackage com.titan.cabin;import java.rmi.RemoteException;public interface Cabin extends javax.ejb.EJBObject {
public String getName() throws RemoteException;
public void setName (String str) throws RemoteException;
public int getDeckLevel() throws RemoteException;
public void setDeckLevel (int level) throws RemoteException;
public int getShip() throws RemoteException;
public void setShip (int sp) throws RemoteException;
public int getBedCount() throws RemoteException;
public void setBedCount (int bc) throws RemoteException;
}