Enum Class AsyncUpdateErrorHandlingActionType

java.lang.Object
java.lang.Enum<AsyncUpdateErrorHandlingActionType>
com.evolveum.midpoint.xml.ns._public.common.common_3.AsyncUpdateErrorHandlingActionType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<AsyncUpdateErrorHandlingActionType>, Constable

public enum AsyncUpdateErrorHandlingActionType extends Enum<AsyncUpdateErrorHandlingActionType> implements TypeSafeEnum
How to handle errors during async update processing. EXPERIMENTAL
  • Enum Constant Details

    • STOP_PROCESSING

      public static final AsyncUpdateErrorHandlingActionType STOP_PROCESSING
      Stop processing messages from this source (take the source down). When using Async Update task this means that the task will be suspended - in case this is the only async update source.
    • SKIP_UPDATE

      public static final AsyncUpdateErrorHandlingActionType SKIP_UPDATE
      The particular update causing problems will be skipped.
    • RETRY

      public static final AsyncUpdateErrorHandlingActionType RETRY
      Processing of the message will be retried. (Needs additional parameters like how many times and in what intervals.) This is currently not implemented.
  • Method Details

    • values

      public static AsyncUpdateErrorHandlingActionType[] 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 AsyncUpdateErrorHandlingActionType 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
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static AsyncUpdateErrorHandlingActionType fromValue(String v)