public enum RequestStatus extends Enum<RequestStatus>
| Enum Constant and Description |
|---|
completed
The request completed successfully and results have been submitted
|
failed
An error occurred during request processing at the node
|
interaction
The request is waiting for user interaction,
e.g. manual confirmation of execution or result submission.
|
processing
The request is currently being processed.
|
queued
The request was accepted for processing, but is currently waiting in the execution queue.
|
rejected
The request was rejected and will not be processed
|
retrieved
The request has been retrieved by the node.
|
| Modifier and Type | Method and Description |
|---|---|
static RequestStatus |
valueOf(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 retrieved
public static final RequestStatus interaction
public static final RequestStatus queued
public static final RequestStatus processing
public static final RequestStatus completed
public static final RequestStatus rejected
public static final RequestStatus failed
public static RequestStatus[] values()
for (RequestStatus c : RequestStatus.values()) System.out.println(c);
public static RequestStatus 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 nullCopyright © 2014–2018 University of Oldenburg. All rights reserved.