UserVerificationMethodExtension
Extension for FIDO User Verification Method.
This authentication extension allows Relying Parties to ascertain the method(s) used by
the user to authorize the operation.
Note that this extension can be used in only sign calls.
Inherited Constant Summary
From interface android.os.Parcelable
int |
CONTENTS_FILE_DESCRIPTOR |
|
int |
PARCELABLE_WRITE_RETURN_VALUE |
|
Public Constructor Summary
Inherited Method Summary
From class java.lang.Object
Object
|
clone()
|
boolean |
|
void |
finalize()
|
final Class<?>
|
getClass()
|
int |
hashCode()
|
final void |
notify()
|
final void |
notifyAll()
|
String
|
toString()
|
final void |
wait(long arg0, int arg1)
|
final void |
wait(long arg0)
|
final void |
wait()
|
From interface android.os.Parcelable
abstract int |
describeContents()
|
abstract void |
writeToParcel( Parcel arg0,
int arg1)
|
Public Constructors
public UserVerificationMethodExtension (boolean uvm)
Public Methods
public boolean equals (Object obj)
public void writeToParcel (Parcel dest, int
flags)
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-10-31 UTC.
[null,null,["Last updated 2024-10-31 UTC."],[[["`UserVerificationMethodExtension` is an extension for FIDO User Verification Method, allowing Relying Parties to determine user authorization methods."],["It's exclusively used in sign calls and provides a way to ascertain the methods employed by the user to authorize the operation."],["The extension includes a constructor accepting a boolean `uvm` and public methods like `getUvm`, `equals`, `hashCode`, and `writeToParcel` for functionality."],["Developers can refer to the WebAuthn User Verification Method (uvm) extension definition for further details and implementation guidance."]]],["`UserVerificationMethodExtension` is a FIDO authentication extension, usable only in sign calls, that lets Relying Parties determine the user's authorization method. It implements `Parcelable` and provides methods for object equality (`equals`), obtaining the user verification method (`getUvm`), generating a hash code (`hashCode`), and writing to a `Parcel` (`writeToParcel`). The constructor takes a boolean `uvm` value. It also offers inherited methods like `clone`, `finalize` and `getClass`.\n"]]