public enum ReturnStatusCode extends Enum<ReturnStatusCode>
| Enum Constant and Description |
|---|
ERROR_AUTH_BAD_CREDENTIALS |
ERROR_AUTH_MISSING_HEADER |
ERROR_CALL_MISSING_PARAMETER |
ERROR_INTERNAL |
IN_PROGRESS |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
String |
getWsCode() |
static ReturnStatusCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReturnStatusCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReturnStatusCode SUCCESS
public static final ReturnStatusCode IN_PROGRESS
public static final ReturnStatusCode ERROR_AUTH_MISSING_HEADER
public static final ReturnStatusCode ERROR_AUTH_BAD_CREDENTIALS
public static final ReturnStatusCode ERROR_CALL_MISSING_PARAMETER
public static final ReturnStatusCode ERROR_INTERNAL
public static ReturnStatusCode[] values()
for (ReturnStatusCode c : ReturnStatusCode.values()) System.out.println(c);
public static ReturnStatusCode 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 getWsCode()
Copyright © 2021. All rights reserved.