|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Customer | |
---|---|
tp | CSEP545 Final Project for Java |
tp.impl | Please place your own code under this package. |
Uses of Customer in tp |
---|
Methods in tp that return Customer | |
---|---|
Customer[] |
WC.listCustomers(Transaction context)
list existing customers that have itinerary |
Customer[] |
RM.listCustomers(Transaction context)
list of customers who reserve resources managed by this RM |
Methods in tp with parameters of type Customer | |
---|---|
boolean |
WC.cancelItinerary(Customer customer)
Cancel an itinerary owned by customer |
int |
Customer.compareTo(Customer other)
|
String |
WC.queryItinerary(Transaction context,
Customer customer)
Get the bill for the customer |
int |
WC.queryItineraryPrice(Transaction context,
Customer customer)
Get the total amount of money the customer owes |
String |
RM.queryReserved(Transaction context,
Customer customer)
Get the bill for the customer
return a string representation of reservations |
int |
RM.queryReservedPrice(Transaction context,
Customer customer)
Get the total amount of money the customer owes
in this RM. |
boolean |
RM.reserve(Transaction context,
Customer customer,
RID resource)
reserve a resource i on behalf of customer c |
boolean |
WC.reserveItinerary(Customer customer,
String[] flights,
String location,
boolean car,
boolean room)
Reserve an itinerary |
void |
RM.unreserve(Transaction context,
Customer customer)
drop all reserved resources for customer customer |
Uses of Customer in tp.impl |
---|
Methods in tp.impl that return Customer | |
---|---|
Customer[] |
MyWC.listCustomers(Transaction context)
|
Customer[] |
MyRM.listCustomers(Transaction context)
|
Methods in tp.impl with parameters of type Customer | |
---|---|
boolean |
MyWC.cancelItinerary(Customer customer)
|
String |
MyWC.queryItinerary(Transaction context,
Customer customer)
|
int |
MyWC.queryItineraryPrice(Transaction context,
Customer customer)
|
String |
MyRM.queryReserved(Transaction context,
Customer customer)
|
int |
MyRM.queryReservedPrice(Transaction context,
Customer customer)
|
boolean |
MyRM.reserve(Transaction context,
Customer c,
RID i)
|
boolean |
MyWC.reserveItinerary(Customer customer,
String[] flights,
String location,
boolean car,
boolean room)
|
void |
MyRM.unreserve(Transaction context,
Customer c)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |