01: package com.titan.travelagent;
02:
03: import java.rmi.RemoteException;
04: import javax.ejb.FinderException;
05:
06: public interface RTravelAgentRemote extends javax.ejb.EJBObject {
07:
08: // String elements follow the format "id, name, deck level"
09: public String[] listCabins(int shipID, int bedCount)
10: throws RemoteException;
11:
12: }
|