Class IdentityMappingConfig
- java.lang.Object
-
- io.quarkus.elytron.security.ldap.config.IdentityMappingConfig
-
public class IdentityMappingConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Map<String,AttributeMappingConfig>attributeMappingsThe configs how we get from the attribute to the RoleStringrdnIdentifierThe identifier which correlates to the provided user (also named "baseFilter")StringsearchBaseDnThe dn where we look for usersbooleansearchRecursiveIf the child nodes are also searched for identities
-
Constructor Summary
Constructors Constructor Description IdentityMappingConfig()
-
-
-
Field Detail
-
rdnIdentifier
@ConfigItem(defaultValue="uid") public String rdnIdentifier
The identifier which correlates to the provided user (also named "baseFilter")
-
searchBaseDn
@ConfigItem public String searchBaseDn
The dn where we look for users
-
searchRecursive
@ConfigItem(defaultValue="false") public boolean searchRecursive
If the child nodes are also searched for identities
-
attributeMappings
@ConfigItem public Map<String,AttributeMappingConfig> attributeMappings
The configs how we get from the attribute to the Role
-
-