Interface UserAuthenticationInputCallback
-
public interface UserAuthenticationInputCallback
An implementation of aUserAuthenticationInputCallback
interface will be given by the Orchestration library (SeeUserAuthenticationCallback.onUserAuthenticationRequired(UserAuthenticationCallback.UserAuthentication, UserAuthenticationInputCallback, boolean)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onUserAuthenticationInputAborted()
Need to be called to inform the Orchestration library of an aborted authentication flow.void
onUserAuthenticationInputSuccess(java.lang.CharSequence input)
Need to be called to inform the Orchestration library of the user input.
-
-
-
Method Detail
-
onUserAuthenticationInputSuccess
void onUserAuthenticationInputSuccess(java.lang.CharSequence input)
Need to be called to inform the Orchestration library of the user input. The conformity of that input can be check by the Orchestration library. That input can be used to encrypt the secret.
-
onUserAuthenticationInputAborted
void onUserAuthenticationInputAborted()
Need to be called to inform the Orchestration library of an aborted authentication flow.
-
-