AuthenticatorTransferCompletionStatus

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

  • It defines two constant values: COMPLETED_FAILURE for a failed transfer and COMPLETED_SUCCESS for a successful transfer.

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