Package customer
Class GoldCustomer
java.lang.Object
customer.Customer
customer.GoldCustomer
- All Implemented Interfaces:
IGiveBetList
Represents a Gold-level customer, a specialized type of
Customer with enhanced betting limits.
The GoldCustomer class is a final extension of the Customer class, and is constructed
with the CustomerType.GOLD type, which assigns it a higher betting limit as defined in CustomerType.
-
Constructor Summary
ConstructorsConstructorDescriptionGoldCustomer(String fullName) Constructs a new Gold-level customer with the specified full name. -
Method Summary
Methods inherited from class customer.Customer
addCustomerBet, getCustomerBetList, getMaxStake, increaseTotalGains, increaseTotalSpent, toString
-
Constructor Details
-
GoldCustomer
Constructs a new Gold-level customer with the specified full name.- Parameters:
fullName- The full name of the Gold customer.
-