Class DirContextConfig
- java.lang.Object
-
- io.quarkus.elytron.security.ldap.config.DirContextConfig
-
public class DirContextConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description Duration
connectTimeout
The connect timeoutOptional<String>
password
The password which belongs to the principal (also named "bindCredential")Optional<String>
principal
The principal: user which is used to connect to ldap server (also named "bindDn")Duration
readTimeout
The read timeoutorg.wildfly.security.auth.realm.ldap.DirContextFactory.ReferralMode
referralMode
how ldap redirects are handledString
url
The url of the ldap server
-
Constructor Summary
Constructors Constructor Description DirContextConfig()
-
-
-
Field Detail
-
url
@ConfigItem public String url
The url of the ldap server
-
principal
@ConfigItem public Optional<String> principal
The principal: user which is used to connect to ldap server (also named "bindDn")
-
password
@ConfigItem public Optional<String> password
The password which belongs to the principal (also named "bindCredential")
-
referralMode
@ConfigItem(defaultValue="ignore") public org.wildfly.security.auth.realm.ldap.DirContextFactory.ReferralMode referralMode
how ldap redirects are handled
-
connectTimeout
@ConfigItem(defaultValue="5s") public Duration connectTimeout
The connect timeout
-
readTimeout
@ConfigItem(defaultValue="60s") public Duration readTimeout
The read timeout
-
-