public enum RequestCallType extends java.lang.Enum<RequestCallType>
Enum Constant and Description |
---|
ECI_EXTENDED
An extended LUW ECI call
|
ECI_EXTENDED_TPN
An extended LUW ECI call with eci_tpn set
|
ECI_SYNC
A SYNCONRETURN ECI call
|
ECI_SYNC_TPN
A SYNCONRETURN ECI call with eci_tpn set
|
ESI_CHANGE_PASSWORD
A change password request
|
ESI_VERIFY_PASSWORD
A verify password request
|
XA
An XA transaction
|
Modifier and Type | Method and Description |
---|---|
static RequestCallType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestCallType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestCallType ECI_SYNC
public static final RequestCallType ECI_SYNC_TPN
public static final RequestCallType ECI_EXTENDED
public static final RequestCallType ECI_EXTENDED_TPN
public static final RequestCallType XA
public static final RequestCallType ESI_VERIFY_PASSWORD
public static final RequestCallType ESI_CHANGE_PASSWORD
public static RequestCallType[] values()
for (RequestCallType c : RequestCallType.values()) System.out.println(c);
public static RequestCallType 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