...
This is an asynchronous task to delete all U2F Security Keys.The TaskListener
public static void
DeleteAllSecurityKeysTask.runTask(TaskListener taskListener, String serverUrl, String sessionToken)
taskListener - processes the result of the delete all request.
mServerUrlĀ is serverUrlĀ - is the URL of the SurePassID FIDO Server.
mSessionToken sessionTokenĀ - is the value returned after successfully authenticating with a username and password.
Example
Code Block | ||||
---|---|---|---|---|
| ||||
DeleteAllSecurityKeysTask.runTask(new TaskListener() { @Override public void onTaskSuccess() { } @Override public void onTaskError(String errorMessage, int errorCode) { } }, mServerUrl, mSessionToken); |
...