Interface AuthenticatorDescriptionCallback


public interface AuthenticatorDescriptionCallback
A callback for providing a custom description for an authenticator.

This callback is used by the FIDO2 SDK to receive the application-provided AuthenticatorDescriptor for a selected authenticator.

Since:
1.0.0
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Cancels the operation to retrieve an authenticator description.
    void
    Called by the application to provide the custom authenticator description.
  • Method Details

    • onAuthenticatorDescriptionProvided

      void onAuthenticatorDescriptionProvided(@NonNull AuthenticatorDescriptor authenticatorDescriptor)
      Called by the application to provide the custom authenticator description.
      Parameters:
      authenticatorDescriptor - The custom descriptor for the authenticator. Must not be null.
      Since:
      1.0.0
    • cancel

      void cancel()
      Cancels the operation to retrieve an authenticator description.
      Since:
      1.0.0