Interface IdentityStore

  • All Known Implementing Classes:
    LDAPIdentityStore

    public interface IdentityStore
    IdentityStore representation providing minimal SPI TODO: Rather remove this abstraction
    Author:
    Boleslaw Dawidowicz, Shane Bryzak
    • Method Detail

      • getConfig

        LDAPConfig getConfig()
        Returns the configuration for this IdentityStore instance
        Returns:
      • add

        void add​(LDAPObject ldapObject)
        Persists the specified IdentityType
        Parameters:
        ldapObject -
      • update

        void update​(LDAPObject ldapObject)
        Updates the specified IdentityType
        Parameters:
        ldapObject -
      • remove

        void remove​(LDAPObject ldapObject)
        Removes the specified IdentityType
        Parameters:
        ldapObject -
      • addMemberToGroup

        void addMemberToGroup​(String groupDn,
                              String memberAttrName,
                              String value)
        Adds a member to a group.
        Parameters:
        groupDn - The DN of the group object
        memberAttrName - The member attribute name
        value - The value (it can be uid or dn depending the group type)
      • removeMemberFromGroup

        void removeMemberFromGroup​(String groupDn,
                                   String memberAttrName,
                                   String value)
        Removes a member from a group.
        Parameters:
        groupDn - The DN of the group object
        memberAttrName - The member attribute name
        value - The value (it can be uid or dn depending the group type)
      • countQueryResults

        int countQueryResults​(LDAPQuery LDAPQuery)
      • updatePassword

        void updatePassword​(LDAPObject user,
                            String password,
                            LDAPOperationDecorator passwordUpdateDecorator)
        Updates the specified credential value.
        Parameters:
        user - Keycloak user
        password - Ldap password
        passwordUpdateDecorator - Callback to be executed before/after password update. Can be null