ICreateCredentialCallbacks

@Generated(value = "//java/com/google/android/aidl")
public interface ICreateCredentialCallbacks extends IInterface


Interface for the callbacks of the credential creation.

Summary

Nested types

Public methods

abstract void
onFailure(String type, String message)

Called when the credential creation fails.

abstract void

Called when the credential creation is successful.

abstract void
onSuccessV2(
    CreateCredentialResponse response,
    PendingIntent pendingIntent
)

Called when the credential creation is successful.

Inherited methods

From android.os.IInterface
abstract IBinder

Public methods

onFailure

abstract void onFailure(String type, String message)

Called when the credential creation fails.

Parameters
String type

The type of the error.

String message

The error message.

onSuccess

abstract void onSuccess(CreateCredentialResponse response)

Called when the credential creation is successful.

onSuccessV2

abstract void onSuccessV2(
    CreateCredentialResponse response,
    PendingIntent pendingIntent
)

Called when the credential creation is successful.

Parameters
CreateCredentialResponse response

The response containing the credential creation details.

PendingIntent pendingIntent

The pending intent to be used to complete the credential creation.