Enum Class FetchMode

java.lang.Object
java.lang.Enum<FetchMode>
com.atlassian.crowd.directory.query.FetchMode
All Implemented Interfaces:
Serializable, Comparable<FetchMode>, Constable

public enum FetchMode extends Enum<FetchMode>
Specifies the properties that should be fetched from Microsoft Entra ID
  • Enum Constant Details

    • FULL

      public static final FetchMode FULL
      Will fetch all properties that are mapped to Crowd. Memberships will not be fetched
    • DELTA_QUERY

      public static final FetchMode DELTA_QUERY
      Will fetch all properties that are mapped to Crowd. Memberships for groups will be fetched. Only applicable to delta queries
    • NAME_AND_ID

      public static final FetchMode NAME_AND_ID
      Will fetch the entity name and external id
    • NAME

      public static final FetchMode NAME
      Will only fetch the entity name
    • ID

      public static final FetchMode ID
      Will only fetch the external id
  • Method Details

    • values

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