Enum AuthenticationStatus

java.lang.Object
java.lang.Enum<AuthenticationStatus>
com.couchbase.client.core.diagnostics.AuthenticationStatus
All Implemented Interfaces:
Serializable, Comparable<AuthenticationStatus>, java.lang.constant.Constable

@Volatile public enum AuthenticationStatus extends Enum<AuthenticationStatus>
The last known authentication status for an endpoint.
  • Enum Constant Details

    • UNKNOWN

      public static final AuthenticationStatus UNKNOWN
      Authentication is in progress or has not started. There is no evidence of it failing or succeeding yet.
    • SUCCEEDED

      public static final AuthenticationStatus SUCCEEDED
      Authentication was successful.
    • FAILED

      public static final AuthenticationStatus FAILED
      Authentication failed.
  • Method Details

    • values

      public static AuthenticationStatus[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static AuthenticationStatus valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null