Package com.creditcall.chipdnamobile
Interface ISOAPListener
public interface ISOAPListener
This interface should be used to listen during interaction with
SOAPTransactionHistory. The listener is informed when logins are
completed, transaction as retrieved, etc and returns the requested data.- Author:
- Creditcall Ltd
-
Method Summary
Modifier and TypeMethodDescriptionvoidretrievedTransaction(SOAPExtendedTransaction transaction, ChipDnaMobileErrorCode errorCode) Invoked when the transaction has been retrieved.voidretrievedTransactions(List<SOAPTransaction> transactions, ChipDnaMobileErrorCode errorCode) Invoked when the list of the transactions has been retrieved.voidretrievedTransactionStatistics(List<SOAPTransactionStatistics> transactionStatistics, ChipDnaMobileErrorCode errorCode) Invoked when the transaction statistics have been retrieved.
-
Method Details
-
retrievedTransactions
Invoked when the list of the transactions has been retrieved.- Parameters:
transactions- A list ofSOAPTransaction. An array will be null if an error occurred.errorCode- Error code generated during the request. It will contain error if the SOAP request was unsuccessful or some other error occurred. It will be null otherwise. Error codes are defined inChipDnaMobileErrorCodeandChipDnaMobileErrorCode.
-
retrievedTransaction
Invoked when the transaction has been retrieved.- Parameters:
transaction- Transaction returned from the request. It will be null if an error occurred.errorCode- Error code generated during the request. It will contain error if the SOAP request was unsuccessful or some other error occurred. It will be null otherwise. Error codes are defined inChipDnaMobileErrorCodeandChipDnaMobileErrorCode.
-
retrievedTransactionStatistics
void retrievedTransactionStatistics(List<SOAPTransactionStatistics> transactionStatistics, ChipDnaMobileErrorCode errorCode) Invoked when the transaction statistics have been retrieved.- Parameters:
transactionStatistics- A list ofSOAPTransactionStatistics. An array will be null if an error occurred.errorCode- Error code generated during the request. It will contain error if the SOAP request was unsuccessful or some other error occurred. It will be null otherwise. Error codes are defined inChipDnaMobileErrorCodeandChipDnaMobileErrorCode.
-