- All Implemented Interfaces:
Serializable
,Comparable<ActivationStatus>
,Constable
The activation status. This status applies to the
ActivationLogEntry
record.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFailed to activate to the given phase.The service has been activated and is fully ready to receive requests.A general warning during lifecycle.The service has been activated but is still being started asynchronously, and is not fully ready yet to receive requests. -
Method Summary
Modifier and TypeMethodDescriptionstatic ActivationStatus
Returns the enum constant of this class with the specified name.static ActivationStatus[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUCCESS
The service has been activated and is fully ready to receive requests. -
WARNING_SUCCESS_BUT_NOT_READY
The service has been activated but is still being started asynchronously, and is not fully ready yet to receive requests. Important note: This is NOT health related - Health is orthogonal to service bindings/activation and readiness. -
WARNING_GENERAL
A general warning during lifecycle. -
FAILURE
Failed to activate to the given phase.
-
-
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
-