Interface YotiPinEntry.YotiPinEntryListener
-
- Enclosing class:
- YotiPinEntry
public static interface YotiPinEntry.YotiPinEntryListenerListener containing methods that will be invoked by theYotiPinEntrywhen all the digits have been entered.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisAccessibilityEnabled()Gets a value indicating whether accessibility is enabled or not.voidonPinCodeEntryComplete(java.lang.String pin)The user has entered the full pin.voidonPinVisibilityToggledToHidden()Called when the pin visibility has been toggled to be hidden.voidonPinVisibilityToggledToVisible()Called when the pin visibility has been toggled to be visible.voidonTransitionToErrorStateComplete()Called when the transition to the error state has completed.voidonTransitionToSuccessStateComplete()Called when the transition to the success state has completed.
-
-
-
Method Detail
-
onPinCodeEntryComplete
void onPinCodeEntryComplete(java.lang.String pin)
The user has entered the full pin.- Parameters:
pin- The pin code.
-
onTransitionToSuccessStateComplete
void onTransitionToSuccessStateComplete()
Called when the transition to the success state has completed.
-
onTransitionToErrorStateComplete
void onTransitionToErrorStateComplete()
Called when the transition to the error state has completed.
-
isAccessibilityEnabled
boolean isAccessibilityEnabled()
Gets a value indicating whether accessibility is enabled or not.- Returns:
- True if accessibility is enabled, otherwise false.
-
onPinVisibilityToggledToVisible
void onPinVisibilityToggledToVisible()
Called when the pin visibility has been toggled to be visible.
-
onPinVisibilityToggledToHidden
void onPinVisibilityToggledToHidden()
Called when the pin visibility has been toggled to be hidden.
-
-