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

public static enum ServerUpdateActionResult.Result extends Enum<ServerUpdateActionResult.Result>
  • Enum Constant Details

    • NOT_EXECUTED

      public static final ServerUpdateActionResult.Result 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

      public static final ServerUpdateActionResult.Result EXECUTED
      The action was successfully executed; server configuration was modified and any deployment changes were initiated in a running server.
    • CONFIGURATION_MODIFIED_REQUIRES_RESTART

      public static final ServerUpdateActionResult.Result 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

      public static final ServerUpdateActionResult.Result FAILED
      The action failed to complete successfully. See ServerUpdateActionResult.getDeploymentException() for possible details.
    • ROLLED_BACK

      public static final ServerUpdateActionResult.Result 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

      public static ServerUpdateActionResult.Result[] 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

      public static ServerUpdateActionResult.Result valueOf(String name)
      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 name
      NullPointerException - if the argument is null