Enum Class AutomaticModelHandling

java.lang.Object
java.lang.Enum<AutomaticModelHandling>
io.fluxzero.sdk.modeling.AutomaticModelHandling
All Implemented Interfaces:
Serializable, Comparable<AutomaticModelHandling>, Constable

public enum AutomaticModelHandling extends Enum<AutomaticModelHandling>
Controls whether model applies may be exposed as an automatic command handler.

Automatic model handlers behave like self-tracking payloads: commands are first stored and then handled by the asynchronous consumer infrastructure. Spring discovers eligible model and payload types within the application's component-scan boundaries; non-Spring applications can register the types through Fluxzero.registerHandlers(Object...). A payload is never claimed merely because it declares assertions or interceptors: its locally registered interceptor chain must reach a model apply.

  • Enum Constant Details

    • DEFAULT

      public static final AutomaticModelHandling DEFAULT
      Inherit from the next broader scope.
    • ENABLED

      public static final AutomaticModelHandling ENABLED
      Enable automatic command handling.
    • DISABLED

      public static final AutomaticModelHandling DISABLED
      Require an explicit command handler, which may still invoke Fluxzero.assertAndApply(update).
  • Method Details

    • values

      public static AutomaticModelHandling[] 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 AutomaticModelHandling 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