Enum Class ConnectFlow.Outcome

java.lang.Object
java.lang.Enum<ConnectFlow.Outcome>
app.l2nx.gs.adapter.core.connect.ConnectFlow.Outcome
All Implemented Interfaces:
Serializable, Comparable<ConnectFlow.Outcome>, Constable
Enclosing class:
ConnectFlow

public static enum ConnectFlow.Outcome extends Enum<ConnectFlow.Outcome>
Coarse-grained connect-flow events surfaced to the orchestrator (NxAdapter).
  • Enum Constant Details

    • STARTING

      public static final ConnectFlow.Outcome STARTING
      A connect attempt is about to be executed (initial submit or retry).
    • ACTIVE

      public static final ConnectFlow.Outcome ACTIVE
      200 — adapter is connected.
    • TRANSIENT

      public static final ConnectFlow.Outcome TRANSIENT
      Transient failure — retry scheduled.
    • FAILED

      public static final ConnectFlow.Outcome FAILED
      Terminal non-recoverable failure — no further retries.
    • REJECTED

      public static final ConnectFlow.Outcome REJECTED
      Terminal — server deactivated by tenant.
  • Method Details

    • values

      public static ConnectFlow.Outcome[] 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

      public static ConnectFlow.Outcome valueOf(String name)
      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