Interface LocalAuthenticationCallback
-
public interface LocalAuthenticationCallback
Interface to implement in order to receive events related to local authentication.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onLocalAuthenticationAborted()
Called upon local authentication abortionvoid
onLocalAuthenticationPasswordError(PasswordError error)
Called upon password error when performing local authentication.void
onLocalAuthenticationSuccess(java.lang.String otp, java.lang.String hostCode)
Called upon local authentication success.
-
-
-
Method Detail
-
onLocalAuthenticationSuccess
void onLocalAuthenticationSuccess(java.lang.String otp, java.lang.String hostCode)
Called upon local authentication success.- Parameters:
otp
- the generated one-time passwordhostCode
- the generated host code
-
onLocalAuthenticationAborted
void onLocalAuthenticationAborted()
Called upon local authentication abortion
-
onLocalAuthenticationPasswordError
void onLocalAuthenticationPasswordError(PasswordError error)
Called upon password error when performing local authentication.- Parameters:
error
- the type of password error
-
-