|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<CreateResourceStatus> org.rhq.core.domain.resource.CreateResourceStatus
public enum CreateResourceStatus
Status indicators for a create resource request made to a plugin.
Enum Constant Summary | |
---|---|
FAILURE
Indicates the agent has responded to this request and indicated a failure occurred in either the agent, plugin container, or plugin itself. |
|
IN_PROGRESS
Indicates the request has been submitted to the agent but we have not yet received a response. |
|
INVALID_ARTIFACT
The resource was created, however there were errors while creating the artifact associated with the resource. |
|
INVALID_CONFIGURATION
The resource was created, however there were errors configuring it. |
|
SUCCESS
Indicates the result has been returned from the agent and the plugin was able to create the requested resource. |
|
TIMED_OUT
Indicates the request was successfully sent to the agent, however a response was not received in a timely manner. |
Method Summary | |
---|---|
String |
toString()
|
static CreateResourceStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CreateResourceStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final CreateResourceStatus IN_PROGRESS
public static final CreateResourceStatus SUCCESS
public static final CreateResourceStatus FAILURE
public static final CreateResourceStatus INVALID_CONFIGURATION
public static final CreateResourceStatus INVALID_ARTIFACT
public static final CreateResourceStatus TIMED_OUT
Method Detail |
---|
public static CreateResourceStatus[] values()
for (CreateResourceStatus c : CreateResourceStatus.values()) System.out.println(c);
public static CreateResourceStatus valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<CreateResourceStatus>
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |