Class MeaPinRequestReceiver


  • public abstract class MeaPinRequestReceiver
    extends android.content.BroadcastReceiver
    Receiver to handle request for PIN reset or change events. App developers should extend this class and implement abstract methods to listen for events.
    • Nested Class Summary

      • Nested classes/interfaces inherited from class android.content.BroadcastReceiver

        android.content.BroadcastReceiver.PendingResult
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      abstract void handleOnCardPinResetIntent​(android.content.Context context, java.lang.String cardId)
      This method must be overridden by developers to receive event when card PIN was reset.
      abstract void handleOnWalletPinResetIntent​(android.content.Context context)
      This method must be overridden by developers to receive event when wallet PIN was reset.
      void onReceive​(android.content.Context context, android.content.Intent intent)
      Receives broadcast message with intent actions ON_WALLET_PIN_RESET_REQUEST or ON_CARD_PIN_RESET_REQUEST when card or wallet PIN was reset.
      • Methods inherited from class android.content.BroadcastReceiver

        abortBroadcast, clearAbortBroadcast, getAbortBroadcast, getDebugUnregister, getResultCode, getResultData, getResultExtras, goAsync, isInitialStickyBroadcast, isOrderedBroadcast, peekService, setDebugUnregister, setOrderedHint, setResult, setResultCode, setResultData, setResultExtras
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • MeaPinRequestReceiver

        public MeaPinRequestReceiver()
    • Method Detail

      • onReceive

        public void onReceive​(android.content.Context context,
                              android.content.Intent intent)
        Receives broadcast message with intent actions ON_WALLET_PIN_RESET_REQUEST or ON_CARD_PIN_RESET_REQUEST when card or wallet PIN was reset.
        Specified by:
        onReceive in class android.content.BroadcastReceiver
        Parameters:
        context - Application context.
        intent - Intent.
      • handleOnWalletPinResetIntent

        public abstract void handleOnWalletPinResetIntent​(android.content.Context context)
        This method must be overridden by developers to receive event when wallet PIN was reset.
        Parameters:
        context - Application context.
      • handleOnCardPinResetIntent

        public abstract void handleOnCardPinResetIntent​(android.content.Context context,
                                                        java.lang.String cardId)
        This method must be overridden by developers to receive event when card PIN was reset.
        Parameters:
        context - Application context.
        cardId - Id of card for the pin was changed.