public interface ChallengeStatusReceiver
| Modifier and Type | Method and Description |
|---|---|
void |
cancelled()
Called when the Cardholder selects the option to cancel the transaction on the challenge screen.
|
void |
completed(CompletionEvent completionEvent)
Called when the challenge process (that is, the transaction) is completed.
|
void |
protocolError(ProtocolErrorEvent protocolErrorEvent)
Called when the 3DS SDK receives an EMV 3-D Secure protocol-defined error message from the ACS.
|
void |
runtimeError(RuntimeErrorEvent runtimeErrorEvent)
Called when the 3DS SDK encounters errors during the challenge process.
|
void |
timedout()
Called when the challenge process reaches or exceeds the timeout interval that is specified
during the
doChallenge call on the 3DS SDK. |
void completed(CompletionEvent completionEvent)
completionEvent - Information about completion of the challenge process.void cancelled()
void timedout()
doChallenge call on the 3DS SDK.void protocolError(ProtocolErrorEvent protocolErrorEvent)
protocolErrorEvent - Information about the protocol error of the challenge process.void runtimeError(RuntimeErrorEvent runtimeErrorEvent)
protocolError method.runtimeErrorEvent - Information about the error(excluding protocol error) of the challenge process.