# Print output for @column tags ?>
public
abstract
class
ConfirmationCallback
extends Object
java.lang.Object | |
↳ | android.security.ConfirmationCallback |
Callback class used when signaling that a prompt is no longer being presented.
Public constructors | |
---|---|
ConfirmationCallback()
|
Public methods | |
---|---|
void
|
onCanceled()
Called when the requested prompt was dismissed by the application. |
void
|
onConfirmed(byte[] dataThatWasConfirmed)
Called when the requested prompt was accepted by the user. |
void
|
onDismissed()
Called when the requested prompt was dismissed (not accepted) by the user. |
void
|
onError(Throwable e)
Called when the requested prompt was dismissed because of a low-level error. |
Inherited methods | |
---|---|
public ConfirmationCallback ()
public void onCanceled ()
Called when the requested prompt was dismissed by the application.
public void onConfirmed (byte[] dataThatWasConfirmed)
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 |
byte : the data that was confirmed, see above for the format.
This value cannot be null . |
public void onDismissed ()
Called when the requested prompt was dismissed (not accepted) by the user.
public void onError (Throwable e)
Called when the requested prompt was dismissed because of a low-level error.
Parameters | |
---|---|
e |
Throwable : a throwable representing the error. |