Interface AuthenticatorSelectionHandler

All Superinterfaces:
CancelableHandler

public interface AuthenticatorSelectionHandler extends CancelableHandler
The object handling the outcome of an interaction where the user chooses the authenticator to be used.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    aaid(String aaid)
    Provides the AAID of the authenticator selected by the user.
    void
    This method must be invoked if the operation must be canceled.
  • Method Details

    • cancel

      void cancel()
      This method must be invoked if the operation must be canceled.
      Specified by:
      cancel in interface CancelableHandler
      Throws:
      IllegalStateException - if either this method or aaid(String) were previously invoked
    • aaid

      void aaid(String aaid)
      Provides the AAID of the authenticator selected by the user.
      Parameters:
      aaid - the AAID of the selected authenticator
      Throws:
      IllegalStateException - if either cancel() or this method were previously invoked