Class AttributeMappingConfig
- java.lang.Object
-
- io.quarkus.elytron.security.ldap.config.AttributeMappingConfig
-
public class AttributeMappingConfig extends Object
Configuration information used to populate a AttributeMapping
-
-
Field Summary
Fields Modifier and Type Field Description StringfilterThe filter (also named "roleFilter")StringfilterBaseDnThe filter base dn (also named "rolesContextDn")StringfromThe roleAttributeId from which is mapped (e.g.StringtoThe identifier whom the attribute is mapped to (in Quarkus: "groups", in WildFly this is "Roles")
-
Constructor Summary
Constructors Constructor Description AttributeMappingConfig()
-
-
-
Field Detail
-
from
@ConfigItem public String from
The roleAttributeId from which is mapped (e.g. "cn")
-
to
@ConfigItem(defaultValue="groups") public String to
The identifier whom the attribute is mapped to (in Quarkus: "groups", in WildFly this is "Roles")
-
filter
@ConfigItem public String filter
The filter (also named "roleFilter")
-
filterBaseDn
@ConfigItem public String filterBaseDn
The filter base dn (also named "rolesContextDn")
-
-