Package com.meawallet.mtp
Interface MeaCardProvisionListener
public interface MeaCardProvisionListener
Interface describing the various card provision events.
App developers should create a local instance of this class and pass it to
MeaTokenPlatform.setCardProvisionListener(MeaCardProvisionListener) to listen for events.
Event callbacks are invoked on the Main / UI thread after the background computation finishes.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonCardProvisionCompleted(MeaCard meaCard) Called when operation completed successfully.voidonCardProvisionFailure(MeaCard meaCard, MeaError error) Called when operation failed.
-
Method Details
-
onCardProvisionCompleted
Called when operation completed successfully.- Parameters:
meaCard- The card for which provision has been successful.
-
onCardProvisionFailure
Called when operation failed.- Parameters:
meaCard- The card for which provision has failed.error- Provision failure error.
-