Enum Class ServerUpdateActionResult.Result
java.lang.Object
java.lang.Enum<ServerUpdateActionResult.Result>
org.jboss.as.controller.client.helpers.standalone.ServerUpdateActionResult.Result
- All Implemented Interfaces:
Serializable,Comparable<ServerUpdateActionResult.Result>,Constable
- Enclosing interface:
- ServerUpdateActionResult
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates a successful outcome for an action that is part of an update plan that is organized around a server restart.The action was successfully executed; server configuration was modified and any deployment changes were initiated in a running server.The action failed to complete successfully.Indicates the action was not executed because some problem with the overall update plan halted plan execution before this action was attempted.The action completed successfully, but was rolled back due to a problem with some other action in the overall deployment plan. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static ServerUpdateActionResult.Result[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NOT_EXECUTED
Indicates the action was not executed because some problem with the overall update plan halted plan execution before this action was attempted. -
EXECUTED
The action was successfully executed; server configuration was modified and any deployment changes were initiated in a running server. -
CONFIGURATION_MODIFIED_REQUIRES_RESTART
Indicates a successful outcome for an action that is part of an update plan that is organized around a server restart. The server configuration was successfully modified but the ability to effect changes in a running server is unknown, as completing the action requires restarting the server. -
FAILED
The action failed to complete successfully. SeeServerUpdateActionResult.getDeploymentException()for possible details. -
ROLLED_BACK
The action completed successfully, but was rolled back due to a problem with some other action in the overall deployment plan.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-