Class GovernmentAccountAuditor
java.lang.Object
com.palmergames.bukkit.towny.object.economy.GovernmentAccountAuditor
- All Implemented Interfaces:
AccountAuditor
,AccountObserver
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Called whenever an account money is deposited to an account.Gets the formatted transactions associated with this account.Gets the transactions associated with this account.void
Called whenever an account money is withdrawn from an account.
-
Constructor Details
-
GovernmentAccountAuditor
public GovernmentAccountAuditor()
-
-
Method Details
-
withdrew
Description copied from interface:AccountObserver
Called whenever an account money is withdrawn from an account.- Specified by:
withdrew
in interfaceAccountObserver
- Parameters:
account
- The account withdrew from.amount
- The amount withdrew.reason
- The reason for withdrawing.
-
deposited
Description copied from interface:AccountObserver
Called whenever an account money is deposited to an account.- Specified by:
deposited
in interfaceAccountObserver
- Parameters:
account
- The account deposited to.amount
- The amount deposited.reason
- The reason for depositing.
-
getAuditHistory
Description copied from interface:AccountAuditor
Gets the formatted transactions associated with this account. This should return the history in chronological order.- Specified by:
getAuditHistory
in interfaceAccountAuditor
- Returns:
- The formatted transaction history from this account.
-
getTransactions
Description copied from interface:AccountAuditor
Gets the transactions associated with this account. This should return the history in chronological order.- Specified by:
getTransactions
in interfaceAccountAuditor
- Returns:
- The transaction history from this account.
-