java.lang.Object
java.lang.Enum<SyncResult.Status>
org.apache.jackrabbit.oak.spi.security.authentication.external.SyncResult.Status
All Implemented Interfaces:
Serializable, Comparable<SyncResult.Status>
Enclosing interface:
SyncResult

public static enum SyncResult.Status extends Enum<SyncResult.Status>
Result codes for sync operation.
  • Enum Constant Details

    • NOP

      public static final SyncResult.Status NOP
      No update
    • ADD

      public static final SyncResult.Status ADD
      authorizable added
    • UPDATE

      public static final SyncResult.Status UPDATE
      authorizable updated
    • DELETE

      public static final SyncResult.Status DELETE
      authorizable deleted
    • ENABLE

      public static final SyncResult.Status ENABLE
      authorizable enabled
    • DISABLE

      public static final SyncResult.Status DISABLE
      authorizable disabled
    • NO_SUCH_AUTHORIZABLE

      public static final SyncResult.Status NO_SUCH_AUTHORIZABLE
      nothing changed. no such authorizable found.
    • NO_SUCH_IDENTITY

      public static final SyncResult.Status NO_SUCH_IDENTITY
      nothing changed. no such identity found.
    • MISSING

      public static final SyncResult.Status MISSING
      nothing changed. corresponding identity missing
    • FOREIGN

      public static final SyncResult.Status FOREIGN
      nothing changed. idp name not correct
  • Method Details

    • values

      public static SyncResult.Status[] 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 SyncResult.Status 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