public enum DenialReasons extends java.lang.Enum<DenialReasons>
Enum Constant and Description |
---|
CANCELLED_BY_CARDHOLDER
The transaction was aborted by cardholder
|
CANCELLED_BY_ECR
The transaction was aborted by the ECR
|
CARD_BLOCKED
The card is blocked.
|
CARD_EXPIRED
The card has expired
|
CARD_IS_NOT_VALID_HERE
The host has declined with response code 105 (card not valid here).
|
CONTACT_ISSUER
The transaction was declined, and the card holder should contact the card issuer.
|
DECLINED_BY_HOST
The transaction was declined by the host
|
DECLINED_LOCALLY
The transaction was declined the terminal, without needing to contact the authorising host.
|
FORCED_PARAMETER_LOADING
The terminal must update parameters before the next transaction.l
|
HOST_LOGIN_FAILED
A SPDH login must be completed before a transaction can be run
|
MOBILE_PASS_CODE_REQUIRED
SPDH response code 600
|
NO_RESPONSE
u
There was no answer from the authorising host.
|
NONE
The transaction is not declined, or the reason for denial is unknown.
|
ONLINE_ONLY
The transaction may not be authorised offline.
|
PIN_TRIES_EXCEEDED
The number of PIN tries has been exceeded
|
QUEUE_FULL
The offline transaction queue is full, so no more transactions maybe stored offline.
|
TECHNICAL_ERROR
Technical error.
|
TRY_SIGNATURE
Unable to verify PIN, attempt with signature
|
UNABLE_TO_VERIFY_PIN
The PIN could not be verified.
|
Modifier and Type | Method and Description |
---|---|
static DenialReasons |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DenialReasons[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DenialReasons NONE
public static final DenialReasons DECLINED_LOCALLY
public static final DenialReasons TECHNICAL_ERROR
public static final DenialReasons CONTACT_ISSUER
public static final DenialReasons QUEUE_FULL
public static final DenialReasons ONLINE_ONLY
public static final DenialReasons FORCED_PARAMETER_LOADING
public static final DenialReasons CARD_BLOCKED
public static final DenialReasons TRY_SIGNATURE
public static final DenialReasons CANCELLED_BY_ECR
public static final DenialReasons CANCELLED_BY_CARDHOLDER
public static final DenialReasons DECLINED_BY_HOST
public static final DenialReasons CARD_EXPIRED
public static final DenialReasons HOST_LOGIN_FAILED
public static final DenialReasons CARD_IS_NOT_VALID_HERE
public static final DenialReasons PIN_TRIES_EXCEEDED
public static final DenialReasons UNABLE_TO_VERIFY_PIN
public static final DenialReasons MOBILE_PASS_CODE_REQUIRED
public static final DenialReasons NO_RESPONSE
public static DenialReasons[] values()
for (DenialReasons c : DenialReasons.values()) System.out.println(c);
public static DenialReasons valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null