Interface PinUserVerificationHandler
- All Superinterfaces:
CancelableHandler
The object handling the outcome of an interaction where the user provides PIN credentials.
This is used with the Authenticator.PIN_AUTHENTICATOR_AAID
.
-
Method Summary
-
Method Details
-
verifyPin
void verifyPin(char[] pin) The method to be invoked when the PIN authenticator must be used. The SDK will verify that the provided PIN is valid.- Parameters:
pin
- the PIN.- Throws:
IllegalStateException
- if eithercancel()
or this method were previously invoked
-
cancel
void cancel()The user verification was canceled.- Specified by:
cancel
in interfaceCancelableHandler
- Throws:
IllegalStateException
- if this method, or any other method of the consumer (likeverifyPin(char[])
) were previously invoked
-