Skip to content

Latest commit

 

History

History

payment

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Payment Broker

Implement a payment broker that supports the pay operation with a wallet and a payment provider.

Acceptance Criteria

  • if wallet has funds and provider is available and deposit succeeds should return true.
  • if wallet does not have funds should throw InsufficientFundsException.
  • if provider is not available should throw ProviderNotAvailableException.

Uses