Package org.jboss.as.controller
Enum Class OperationContext.Stage
- All Implemented Interfaces:
Serializable,Comparable<OperationContext.Stage>,Constable
- Enclosing interface:
- OperationContext
The stage at which a step should apply.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe step performs any actions needed to cause the operation to take effect on the relevant servers in the domain.The operation has completed execution.The step applies to the model (read or write).The step applies to the runtime container (read or write).The step checks the result of a runtime container operation (read only). -
Method Summary
Modifier and TypeMethodDescriptionstatic OperationContext.StageReturns the enum constant of this class with the specified name.static OperationContext.Stage[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MODEL
The step applies to the model (read or write). -
RUNTIME
The step applies to the runtime container (read or write). -
VERIFY
The step checks the result of a runtime container operation (read only). Inspect the container, and if problems are detected, record the problem(s) in the operation result. -
DOMAIN
The step performs any actions needed to cause the operation to take effect on the relevant servers in the domain. Adding a step in this stage is only allowed whenProcessType.isHostController()is true. -
DONE
The operation has completed execution.
-
-
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
-