Interface BiometricAuthenticationCallbacks
public interface BiometricAuthenticationCallbacks
Interface to implement biometric authentication.
- Since:
- 5.4.0
-
Method Summary
Modifier and TypeMethodDescriptionvoidonAuthenticationStatus(int status, String message) Authentication status update.voidonSuccess(ProtectorAuthInput authInput) Authentication is successful.
-
Method Details
-
onSuccess
Authentication is successful.- Parameters:
authInput- used for OTP generation.
-
onAuthenticationStatus
Authentication status update. The status code comes from both the SDK and OS. Check the code and message for more information inBiometricAuthenticationStatus. If the status code does not match the listed status code, this means that the SDK is propagating onError and onHelp message directly from Android OS. Refer to Section Constants for more information about the status codes.- Parameters:
status- status codemessage- detailed description
-