Interface DetailsPage
- All Known Implementing Classes:
BosDetailsPage
,SantanderDetailsPage
,TargoBankDetailsPage
public interface DetailsPage
Interface to get the account details from the bank web site
- Since:
- 2.6.0
- Author:
- Frank Münster
-
Method Summary
Modifier and TypeMethodDescriptionReturns the available amount.Return the limit of the credit card.Return the date of the last transaction.Return the date of the next credit card bill.Return the date of the next automatic subtraction.The description of the credit card.getSaldo()
The actual saldo.
-
Method Details
-
getAvailableAmount
Returns the available amount.- Returns:
- the available amount
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getCreditLimit
Return the limit of the credit card.- Returns:
- the credit card limit
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getLastTransaction
Return the date of the last transaction.- Returns:
- date of the last transaction
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getNextBill
Return the date of the next credit card bill.- Returns:
- date of the next credit card bill
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getNextSubtraction
Return the date of the next automatic subtraction.- Returns:
- date of the next automatic subtraction
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getProductDescription
The description of the credit card.- Returns:
- the credit card description
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-
getSaldo
The actual saldo.- Returns:
- the saldo
- Throws:
WebSiteException
- in case the value could not be read from the details hover page
-