ConfirmationCallback
abstract class ConfirmationCallback
kotlin.Any | |
↳ | android.security.ConfirmationCallback |
Callback class used when signaling that a prompt is no longer being presented.
Summary
Public constructors | |
---|---|
Public methods | |
---|---|
open Unit |
Called when the requested prompt was dismissed by the application. |
open Unit |
onConfirmed(dataThatWasConfirmed: ByteArray) Called when the requested prompt was accepted by the user. |
open Unit |
Called when the requested prompt was dismissed (not accepted) by the user. |
open Unit |
Called when the requested prompt was dismissed because of a low-level error. |
Public constructors
ConfirmationCallback
ConfirmationCallback()
Public methods
onCanceled
open fun onCanceled(): Unit
Called when the requested prompt was dismissed by the application.
onConfirmed
open fun onConfirmed(dataThatWasConfirmed: ByteArray): Unit
Called when the requested prompt was accepted by the user. The format of 'dataThatWasConfirmed' parameter is a CBOR encoded map (type 5) with (at least) the keys prompt and extra. The keys are encoded as CBOR text string (type 3). The value of promptText is encoded as CBOR text string (type 3), and the value of extraData is encoded as CBOR byte string (type 2). Other keys may be added in the future.
Parameters | |
---|---|
dataThatWasConfirmed |
ByteArray: the data that was confirmed, see above for the format. This value cannot be null . |
onDismissed
open fun onDismissed(): Unit
Called when the requested prompt was dismissed (not accepted) by the user.
onError
open fun onError(e: Throwable!): Unit
Called when the requested prompt was dismissed because of a low-level error.
Parameters | |
---|---|
e |
Throwable!: a throwable representing the error. |