Enum Class LDAPGroupMapperMode

java.lang.Object
java.lang.Enum<LDAPGroupMapperMode>
org.keycloak.storage.ldap.mappers.membership.LDAPGroupMapperMode
All Implemented Interfaces:
Serializable, Comparable<LDAPGroupMapperMode>, Constable

public enum LDAPGroupMapperMode extends Enum<LDAPGroupMapperMode>
Author:
Marek Posolda
  • Enum Constant Details

    • LDAP_ONLY

      public static final LDAPGroupMapperMode LDAP_ONLY
      All role mappings are retrieved from LDAP and saved into LDAP
    • IMPORT

      public static final LDAPGroupMapperMode IMPORT
      Read-only LDAP mode. Role mappings are retrieved from LDAP for particular user just at the time when he is imported and then they are saved to local keycloak DB. Then all role mappings are always retrieved from keycloak DB, never from LDAP. Creating or deleting of role mapping is propagated only to DB. This is read-only mode LDAP mode and it's good for performance, but when user is put to some role directly in LDAP, it won't be seen by Keycloak
    • READ_ONLY

      public static final LDAPGroupMapperMode READ_ONLY
      Read-only LDAP mode. Role mappings are retrieved from both LDAP and DB and merged together. New role grants are not saved to LDAP but to DB. Deleting role mappings, which is mapped to LDAP, will throw an error.
  • Method Details

    • values

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