Skip to content

Commit 9a83986

Browse files
committed
Merge branch '5.8.x' into 6.2.x
Closes gh-15494
2 parents 3d4bcf1 + ea2ec04 commit 9a83986

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

ldap/src/main/java/org/springframework/security/ldap/authentication/ad/ActiveDirectoryLdapAuthenticationProvider.java

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,11 @@ public final class ActiveDirectoryLdapAuthenticationProvider extends AbstractLda
136136
ContextFactory contextFactory = new ContextFactory();
137137

138138
/**
139-
* @param domain the domain name (may be null or empty)
140-
* @param url an LDAP url (or multiple URLs)
141-
* @param rootDn the root DN (may be null or empty)
139+
* @param domain the domain name (can be null or empty)
140+
* @param url an LDAP url (or multiple space-delimited URLs).
141+
* @param rootDn the root DN (can be null or empty)
142+
* @see <a href="https://docs.oracle.com/javase/jndi/tutorial/ldap/misc/url.html">JNDI
143+
* URL format documentation</a>
142144
*/
143145
public ActiveDirectoryLdapAuthenticationProvider(String domain, String url, String rootDn) {
144146
Assert.isTrue(StringUtils.hasText(url), "Url cannot be empty");

0 commit comments

Comments
 (0)