Package apple.cryptotokenkit.protocol
Interface TKSmartCardUserInteractionDelegate
-
public interface TKSmartCardUserInteractionDelegateDelegate for user interactions involving the SmartCard reader.
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidcharacterEnteredInUserInteraction(TKSmartCardUserInteraction interaction)A valid character has been entered.default voidcorrectionKeyPressedInUserInteraction(TKSmartCardUserInteraction interaction)A correction key has been pressed.default voidinvalidCharacterEnteredInUserInteraction(TKSmartCardUserInteraction interaction)An invalid character has been entered.default voidnewPINConfirmationRequestedInUserInteraction(TKSmartCardUserInteraction interaction)Indicates that the new PIN needs to be confirmed (re-entered).default voidnewPINRequestedInUserInteraction(TKSmartCardUserInteraction interaction)Indicates that the new PIN needs to be entered.default voidoldPINRequestedInUserInteraction(TKSmartCardUserInteraction interaction)Indicates that the old PIN needs to be entered.default voidvalidationKeyPressedInUserInteraction(TKSmartCardUserInteraction interaction)The validation key has been pressed (end of PIN entry).
-
-
-
Method Detail
-
characterEnteredInUserInteraction
default void characterEnteredInUserInteraction(TKSmartCardUserInteraction interaction)
A valid character has been entered.
-
correctionKeyPressedInUserInteraction
default void correctionKeyPressedInUserInteraction(TKSmartCardUserInteraction interaction)
A correction key has been pressed.
-
invalidCharacterEnteredInUserInteraction
default void invalidCharacterEnteredInUserInteraction(TKSmartCardUserInteraction interaction)
An invalid character has been entered.
-
newPINConfirmationRequestedInUserInteraction
default void newPINConfirmationRequestedInUserInteraction(TKSmartCardUserInteraction interaction)
Indicates that the new PIN needs to be confirmed (re-entered).
-
newPINRequestedInUserInteraction
default void newPINRequestedInUserInteraction(TKSmartCardUserInteraction interaction)
Indicates that the new PIN needs to be entered.
-
oldPINRequestedInUserInteraction
default void oldPINRequestedInUserInteraction(TKSmartCardUserInteraction interaction)
Indicates that the old PIN needs to be entered.
-
validationKeyPressedInUserInteraction
default void validationKeyPressedInUserInteraction(TKSmartCardUserInteraction interaction)
The validation key has been pressed (end of PIN entry).
-
-