AccountTransferStatusCodes

public final class AccountTransferStatusCodes extends CommonStatusCodes

Account Transfer specific status codes, for use in Status#getStatusCode().

Constant Summary

int CHALLENGE_NOT_ALLOWED Authenticator is not allowed to throw challenge on this particular device.
int INVALID_REQUEST Request is invalid or malformed.
int NOT_ALLOWED_SECURITY Request is not allowed due to security issue.
int NO_DATA_AVAILABLE Signifies that there is no data available right now.
int SESSION_INACTIVE Session is no longer active.

Inherited Constant Summary

Public Method Summary

static String
getStatusCodeString(int statusCode)
Returns an untranslated debug (not user-friendly) string based on the current status code.

Inherited Method Summary

Constants

public static final int CHALLENGE_NOT_ALLOWED

Authenticator is not allowed to throw challenge on this particular device. It may or may not be possible to throw challenge on the other side. This information can be retrieved by putting a request with type AuthenticatorTransferStatus.GET_META_INFO

Constant Value: 20503

public static final int INVALID_REQUEST

Request is invalid or malformed.

Constant Value: 20502

public static final int NOT_ALLOWED_SECURITY

Request is not allowed due to security issue. Either the request is not from the owner, or some other issue is there.

Constant Value: 20500

public static final int NO_DATA_AVAILABLE

Signifies that there is no data available right now. This could be given when an authenticator tries to get data to import, assuming that there was data meant for it during the setup. In absence of its data, this status is returned.

Constant Value: 20501

public static final int SESSION_INACTIVE

Session is no longer active. Hence the transfer of data wouldn't work any longer. This will be used when authenticator's call deposit data outside the setup process. Or they take too long to respond, and the session is no longer active.

Constant Value: 20504

Public Methods

public static String getStatusCodeString (int statusCode)

Returns an untranslated debug (not user-friendly) string based on the current status code.