public enum ErrorConditionType extends Enum<ErrorConditionType>
Java class for ErrorConditionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ErrorConditionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Aborted"/>
<enumeration value="Busy"/>
<enumeration value="Cancel"/>
<enumeration value="DeviceOut"/>
<enumeration value="InsertedCard"/>
<enumeration value="InProgress"/>
<enumeration value="LoggedOut"/>
<enumeration value="MessageFormat"/>
<enumeration value="NotAllowed"/>
<enumeration value="NotFound"/>
<enumeration value="PaymentRestriction"/>
<enumeration value="Refusal"/>
<enumeration value="UnavailableDevice"/>
<enumeration value="UnavailableService"/>
<enumeration value="InvalidCard"/>
<enumeration value="UnreachableHost"/>
<enumeration value="WrongPIN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ABORTED
The Initiator of the request has sent an Abort messageType request, which was accepted and processed.
|
BUSY
The system is busy, try later
|
CANCEL
The user has aborted the transaction on the PED keyboard, for instance during PIN entering.
|
DEVICE_OUT
Device out of order
|
IN_PROGRESS
The transaction is still in progress and then the command cannot be processed
|
INSERTED_CARD
If the Input Device request a NotifyCardInputFlag and the Customer enters a card in the card reader without answers to the Input command, the POI abort the
|
INVALID_CARD
The card entered by the Customer cannot be processed by the POI because this card is not configured in the system
|
LOGGED_OUT
Not logged in
|
MESSAGE_FORMAT
Error on the format of the messageType, AdditionalResponse shall contain the identification of the data, and the reason in clear text.
|
NOT_ALLOWED
A service request is sent during a Service dialogue.
|
NOT_FOUND
The transaction is not found (e.g.
|
PAYMENT_RESTRICTION
Some sale items are not payable by the card proposed by the Customer.
|
REFUSAL
The transaction is refused by the host or the rules associated to the card, and cannot be repeated.
|
UNAVAILABLE_DEVICE
The hardware is not available (absent, not configured...)
|
UNAVAILABLE_SERVICE
The service is not available (not implemented, not configured, protocol version too old...)
|
UNREACHABLE_HOST
Acquirer or any host is unreachable or has not answered to an online request, so is considered as temporary unavailable.
|
WRONG_PIN
The user has entered the PIN on the PED keyboard and the verification fails.
|
| Modifier and Type | Method and Description |
|---|---|
static ErrorConditionType |
fromValue(String v)
From value error condition type.
|
String |
value()
Value string.
|
static ErrorConditionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ErrorConditionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ErrorConditionType ABORTED
public static final ErrorConditionType BUSY
public static final ErrorConditionType CANCEL
public static final ErrorConditionType DEVICE_OUT
public static final ErrorConditionType INSERTED_CARD
public static final ErrorConditionType IN_PROGRESS
public static final ErrorConditionType LOGGED_OUT
public static final ErrorConditionType MESSAGE_FORMAT
public static final ErrorConditionType NOT_ALLOWED
public static final ErrorConditionType NOT_FOUND
public static final ErrorConditionType PAYMENT_RESTRICTION
public static final ErrorConditionType REFUSAL
public static final ErrorConditionType UNAVAILABLE_DEVICE
public static final ErrorConditionType UNAVAILABLE_SERVICE
public static final ErrorConditionType INVALID_CARD
public static final ErrorConditionType UNREACHABLE_HOST
public static final ErrorConditionType WRONG_PIN
public static ErrorConditionType[] values()
for (ErrorConditionType c : ErrorConditionType.values()) System.out.println(c);
public static ErrorConditionType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static ErrorConditionType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.