Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »


This is an asynchronous task to delete all U2F Security Keys.


DeleteAllSecurityKeysTask.runTask(TaskListener taskListener, String serverUrl, String sessionToken)

taskListener - processes the result of the delete all request.

serverUrlĀ - is the URL of the SurePassID FIDO Server.

sessionTokenĀ - is the value returned after successfully authenticating with a username and password.


Example

DeleteAllSecurityKeysTask.runTask(new TaskListener() {
    @Override
    public void onTaskSuccess() {
    }

    @Override
    public void onTaskError(String errorMessage, int errorCode) {
    }
}, mServerUrl, mSessionToken);
  • No labels