Interface MeaCardPinAuthenticationListener


public interface MeaCardPinAuthenticationListener
Listener interface for card PIN authentication event.

App developers should create a local instance of this class and pass it in MeaCard.authenticateWithCardPin(String, MeaCardPinAuthenticationListener) to listen for events.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called when operation failed.
    void
    Called when card PIN is set successfully.
  • Method Details

    • onPinSet

      @UiThread void onPinSet(@NonNull MeaCard card)
      Called when card PIN is set successfully. Actual authentication will happen online.
      Parameters:
      card - The authenticated card.
    • onFailure

      @UiThread void onFailure(@NonNull MeaError error)
      Called when operation failed.
      Parameters:
      error - The error or error array.