public static enum ServerUpdateActionResult.Result extends Enum<ServerUpdateActionResult.Result>
Enum Constant and Description |
---|
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.
|
EXECUTED
The action was successfully executed; server configuration was
modified and any deployment changes were initiated
in a running server.
|
FAILED
The action failed to complete successfully.
|
NOT_EXECUTED
Indicates the action was not executed because some problem with
the overall update plan halted plan execution before this
action was attempted.
|
ROLLED_BACK
The action completed successfully, but was rolled back due to a
problem with some other action in the overall deployment plan.
|
Modifier and Type | Method and Description |
---|---|
static ServerUpdateActionResult.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerUpdateActionResult.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerUpdateActionResult.Result NOT_EXECUTED
public static final ServerUpdateActionResult.Result EXECUTED
public static final ServerUpdateActionResult.Result CONFIGURATION_MODIFIED_REQUIRES_RESTART
public static final ServerUpdateActionResult.Result FAILED
ServerUpdateActionResult.getDeploymentException()
for possible details.public static final ServerUpdateActionResult.Result ROLLED_BACK
public static ServerUpdateActionResult.Result[] values()
for (ServerUpdateActionResult.Result c : ServerUpdateActionResult.Result.values()) System.out.println(c);
public static ServerUpdateActionResult.Result 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 © 2016 JBoss by Red Hat. All rights reserved.