- All Implemented Interfaces:
Serializable,Comparable<ActivationStatus>,Constable
@Deprecated(forRemoval=true,
since="4.0.8")
public enum ActivationStatus
extends Enum<ActivationStatus>
Deprecated, for removal: This API element is subject to removal in a future version.
Helidon inject is deprecated and will be replaced in a future version
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 ConstantDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Failed to activate to the given phase.Deprecated, for removal: This API element is subject to removal in a future version.The service has been activated and is fully ready to receive requests.Deprecated, for removal: This API element is subject to removal in a future version.A general warning during lifecycle.Deprecated, for removal: This API element is subject to removal in a future version.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 ActivationStatusDeprecated, for removal: This API element is subject to removal in a future version.Returns the enum constant of this class with the specified name.static ActivationStatus[]values()Deprecated, for removal: This API element is subject to removal in a future version.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUCCESS
Deprecated, for removal: This API element is subject to removal in a future version.The service has been activated and is fully ready to receive requests. -
WARNING_SUCCESS_BUT_NOT_READY
Deprecated, for removal: This API element is subject to removal in a future version.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
Deprecated, for removal: This API element is subject to removal in a future version.A general warning during lifecycle. -
FAILURE
Deprecated, for removal: This API element is subject to removal in a future version.Failed to activate to the given phase.
-
-
Method Details
-
values
Deprecated, for removal: This API element is subject to removal in a future version.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
Deprecated, for removal: This API element is subject to removal in a future version.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
-