Interface UserAuthenticationInputCallback
public interface UserAuthenticationInputCallback
An implementation of a
UserAuthenticationInputCallback
interface will be given by the
Orchestration library (See UserAuthenticationCallback.onUserAuthenticationRequired(UserAuthenticationCallback.UserAuthentication, UserAuthenticationInputCallback, boolean)
.-
Method Summary
Modifier and TypeMethodDescriptionvoid
Need to be called to inform the Orchestration library of an aborted authentication flow.void
Need to be called to inform the Orchestration library of the user input.
-
Method Details
-
onUserAuthenticationInputSuccess
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.
-