UserVerificationMethodExtension
Stay organized with collections
Save and categorize content based on your preferences.
AI-generated Key Takeaways
UserVerificationMethodExtension is an extension for FIDO User Verification Method that helps Relying Parties determine the method used by the user to authorize an operation.
This extension can only be used in sign calls.
The class extends Object and implements Parcelable.
It includes a constructor UserVerificationMethodExtension(boolean uvm) and public methods like equals, getUvm, hashCode, and writeToParcel.
public class UserVerificationMethodExtension extends Object
implements Parcelable
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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-31 UTC."],[],["`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"]]