コード例 #1
0
ファイル: FlightRM.java プロジェクト: sameerjagdale/dsPart2
 // Returns price of cars at this location
 public int queryCarsPrice(int id, String location) throws RemoteException {
   return queryPrice(id, Car.getKey(location));
 }
コード例 #2
0
ファイル: FlightRM.java プロジェクト: sameerjagdale/dsPart2
 // Adds car reservation to this customer.
 public boolean reserveCar(int id, int customerID, String location) throws RemoteException {
   return reserveItem(id, customerID, Car.getKey(location), location);
 }
コード例 #3
0
ファイル: FlightRM.java プロジェクト: sameerjagdale/dsPart2
 // Delete cars from a location
 public boolean deleteCars(int id, String location) throws RemoteException {
   return deleteItem(id, Car.getKey(location));
 }