Package com.creditcall.chipdnamobile
Interface ISOAPListener
-
public interface ISOAPListenerThis interface should be used to listen during interaction withSOAPTransactionHistory. The listener is informed when logins are completed, transaction as retrieved, etc and returns the requested data.- Author:
- Creditcall Ltd
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidretrievedTransaction(SOAPExtendedTransaction transaction, ChipDnaMobileErrorCode errorCode)Invoked when the transaction has been retrieved.voidretrievedTransactions(java.util.List<SOAPTransaction> transactions, ChipDnaMobileErrorCode errorCode)Invoked when the list of the transactions has been retrieved.voidretrievedTransactionStatistics(java.util.List<SOAPTransactionStatistics> transactionStatistics, ChipDnaMobileErrorCode errorCode)Invoked when the transaction statistics have been retrieved.
-
-
-
Method Detail
-
retrievedTransactions
void retrievedTransactions(java.util.List<SOAPTransaction> transactions, ChipDnaMobileErrorCode errorCode)
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
void retrievedTransaction(SOAPExtendedTransaction transaction, ChipDnaMobileErrorCode errorCode)
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(java.util.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.
-
-