Interface MeaCardPinListener


  • public interface MeaCardPinListener
    Interface describing the various card PIN change related events.

    App developers should create a local instance of this class and pass it in MeaCard.setPinListener(MeaCardPinListener) to listen for events.

    • Method Detail

      • onCardPinChangeSuccess

        @UiThread
        void onCardPinChangeSuccess​(@NonNull
                                    MeaCard card)
        Called when card PIN change operation completed successfully.
        Parameters:
        card - The card for which PIN update has been successful.
      • onCardPinChangeFailed

        @UiThread
        void onCardPinChangeFailed​(@NonNull
                                   MeaCard card,
                                   @NonNull
                                   MeaError error)
        Called when card PIN change operation has failed.
        Parameters:
        card - The card for which PIN update has failed.
        error - The MeaError object.
      • onCardPinSetSuccess

        @UiThread
        void onCardPinSetSuccess​(@NonNull
                                 MeaCard card)
        Called when card PIN set operation completed successfully.
        Parameters:
        card - The card for which PIN has been set.
      • onCardPinSetFailed

        @UiThread
        void onCardPinSetFailed​(@NonNull
                                MeaCard card,
                                @NonNull
                                MeaError error)
        Called when card PIN set operation has failed.
        Parameters:
        card - The card for which PIN update has failed.
        error - The MeaError object.
      • onCardPinResetCompleted

        @UiThread
        void onCardPinResetCompleted​(@NonNull
                                     MeaCard card)
        Called when card PIN reset operation completed successfully.
        Parameters:
        card - The card for which PIN has been reset.