public enum RequestStatus extends java.lang.Enum<RequestStatus>
Enum Constant and Description |
---|
DUPLICATE_REQUEST
Indicates a duplicate request made for link user account,
while another request at AppStore is in processing state.
|
FAILURE
Indicates Non retryable failures while processing link user account request.
|
FEATURE_TURNED_OFF
Indicates that user have turned OFF the SimpleSignIn feature, either for
their Amazon account / FOS device / 3P app from which request is made.
|
INVALID_LINK_SIGNING_KEY
Applicable only for LinkUserAccount API response.
|
INVALID_LINK_SIGNING_KEY_ENCRYPTION
Applicable only for LinkUserAccount API response.
|
NOT_AVAILABLE
Indicates that SSI feature is disabled by Amazon for any of the following reasons.
|
NOT_SUPPORTED
Indicates this request cannot be handled on the device,
stating that SSI feature is not available on the device.
|
RETRYABLE_FAILURE
Transient errors like Timeout, SSI server 503 response falls under retryable failures.
|
SUCCESSFUL
Indicates that the link user account request is successful.
|
Modifier and Type | Method and Description |
---|---|
static RequestStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RequestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestStatus SUCCESSFUL
public static final RequestStatus FAILURE
public static final RequestStatus RETRYABLE_FAILURE
public static final RequestStatus NOT_SUPPORTED
public static final RequestStatus NOT_AVAILABLE
public static final RequestStatus DUPLICATE_REQUEST
public static final RequestStatus FEATURE_TURNED_OFF
public static final RequestStatus INVALID_LINK_SIGNING_KEY_ENCRYPTION
public static final RequestStatus INVALID_LINK_SIGNING_KEY
public static RequestStatus[] values()
for (RequestStatus c : RequestStatus.values()) System.out.println(c);
public static RequestStatus 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