Enum Class ActivationStatus

java.lang.Object
java.lang.Enum<ActivationStatus>
io.helidon.inject.api.ActivationStatus
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 Constants
    Enum Constant
    Description
    Deprecated, 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 Type
    Method
    Description
    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.
    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.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • SUCCESS

      public static final ActivationStatus 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

      public static final ActivationStatus 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

      public static final ActivationStatus WARNING_GENERAL
      Deprecated, for removal: This API element is subject to removal in a future version.
      A general warning during lifecycle.
    • FAILURE

      public static final ActivationStatus 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

      public 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.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

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