public static enum UpdateResponse.Status extends java.lang.Enum<UpdateResponse.Status>
Enum Constant and Description |
---|
BALANCE_ELEMEMT_NOT_FOUND
status indicating that the required balanceItem/Element, is not found
|
BALANCE_NOT_FOUND
status indicating that the required balance is not found
|
BALANCE_RESERVATION_NOT_FOUND
status indicating that the required reservation is not found
|
CREDIT_CEILING_BREACH
status indicating that update processing resulted in ceiling floor breached
|
CREDIT_FLOOR_BREACH
status indicating that update processing resulted in credit floor breached
|
CUSTOMER_IN_TRANSACTION
status indicating that the customer is in another transaction
|
FAILED
status indicating that update processing failed.
|
REJECTED_AS_RERATING_IN_PROGRESS
status indicating that the request is rejected as as customer is being re-rated
|
REJECTED_AS_STALE
status indicating that the update is rejected, as ECE has latest data
|
SUCCESS
status indicating that update was successfully processed
|
Modifier and Type | Method and Description |
---|---|
static UpdateResponse.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UpdateResponse.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateResponse.Status SUCCESS
public static final UpdateResponse.Status CREDIT_FLOOR_BREACH
public static final UpdateResponse.Status CREDIT_CEILING_BREACH
public static final UpdateResponse.Status FAILED
public static final UpdateResponse.Status REJECTED_AS_STALE
public static final UpdateResponse.Status REJECTED_AS_RERATING_IN_PROGRESS
public static final UpdateResponse.Status CUSTOMER_IN_TRANSACTION
public static final UpdateResponse.Status BALANCE_NOT_FOUND
public static final UpdateResponse.Status BALANCE_ELEMEMT_NOT_FOUND
public static final UpdateResponse.Status BALANCE_RESERVATION_NOT_FOUND
public static UpdateResponse.Status[] values()
for (UpdateResponse.Status c : UpdateResponse.Status.values()) System.out.println(c);
public static UpdateResponse.Status 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