Interface WebAuthnListener
-
- All Superinterfaces:
FRListener<java.lang.String>
public interface WebAuthnListener extends FRListener<java.lang.String>
Listener to listen for WebAuthn Event
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonException(WebAuthnResponseException e)Called when an asynchronous call fails to complete.voidonSuccess(java.lang.String result)Called when an asynchronous call completes successfully.voidonUnsupported(WebAuthnResponseException e)Called when asynchronous call fails to complete with unsupport operation.-
Methods inherited from interface org.forgerock.android.auth.FRListener
onException
-
-
-
-
Method Detail
-
onSuccess
void onSuccess(java.lang.String result)
Called when an asynchronous call completes successfully.- Specified by:
onSuccessin interfaceFRListener<java.lang.String>- Parameters:
result- the value returned
-
onException
void onException(WebAuthnResponseException e)
Called when an asynchronous call fails to complete.- Parameters:
e- the reason for failure
-
onUnsupported
void onUnsupported(WebAuthnResponseException e)
Called when asynchronous call fails to complete with unsupport operation.- Parameters:
e- the reason for failure
-
-