AuthenticatorTransferCompletionStatus

  • AuthenticatorTransferCompletionStatus is an annotation used to indicate the status of an account transfer process.

  • It provides two constants: COMPLETED_SUCCESS signaling a successful transfer and COMPLETED_FAILURE indicating a failed transfer.

  • COMPLETED_SUCCESS should be used by the importing side, while COMPLETED_FAILURE can be used by both importing and exporting sides.

  • This status information helps the API understand the nature of the request and respond accordingly.

public abstract @interface AuthenticatorTransferCompletionStatus implements Annotation

Status for account transfer. This tells the API about the nature of the request. Responses are dependent on the type provided.

Constant Summary

int COMPLETED_FAILURE Notifies to setup that the account transfer has failed.
int COMPLETED_SUCCESS Notifies to setup that the account transfer was successful.

Inherited Method Summary

Constants

public static final int COMPLETED_FAILURE

Notifies to setup that the account transfer has failed. This can be called from importing or exporting side.

Constant Value: 2

public static final int COMPLETED_SUCCESS

Notifies to setup that the account transfer was successful. This should only be called on the importing side (aka target).

Constant Value: 1