From 6a9bde34811b87b5425c05068a31ff61d7e59170 Mon Sep 17 00:00:00 2001 From: Josh Cummings Date: Thu, 21 Mar 2019 13:06:53 -0600 Subject: [PATCH] URL Cleanup Replacing http://www.watersprings.org/pub/id/draft-kashi-incremental-00.txt with https://tools.ietf.org/html/draft-kashi-incremental-00 --- .../springframework/ldap/core/IncrementalAttributesMapper.java | 2 +- .../ldap/core/support/DefaultIncrementalAttributesMapper.java | 2 +- src/docs/asciidoc/index.adoc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/main/java/org/springframework/ldap/core/IncrementalAttributesMapper.java b/core/src/main/java/org/springframework/ldap/core/IncrementalAttributesMapper.java index d97d15ca..ea37d6d5 100644 --- a/core/src/main/java/org/springframework/ldap/core/IncrementalAttributesMapper.java +++ b/core/src/main/java/org/springframework/ldap/core/IncrementalAttributesMapper.java @@ -26,7 +26,7 @@ import java.util.List; * * @author Mattias Hellborg Arthursson * @since 1.3.2 - * @see Incremental Retrieval of Multi-valued Properties + * @see Incremental Retrieval of Multi-valued Properties * @see org.springframework.ldap.core.support.DefaultIncrementalAttributesMapper */ public interface IncrementalAttributesMapper extends AttributesMapper { diff --git a/core/src/main/java/org/springframework/ldap/core/support/DefaultIncrementalAttributesMapper.java b/core/src/main/java/org/springframework/ldap/core/support/DefaultIncrementalAttributesMapper.java index 5af1591e..4403b693 100644 --- a/core/src/main/java/org/springframework/ldap/core/support/DefaultIncrementalAttributesMapper.java +++ b/core/src/main/java/org/springframework/ldap/core/support/DefaultIncrementalAttributesMapper.java @@ -65,7 +65,7 @@ import java.util.Set; * * @author Marius Scurtescu * @author Mattias Hellborg Arthursson - * @see Incremental Retrieval of Multi-valued Properties + * @see Incremental Retrieval of Multi-valued Properties * @see #lookupAttributes(org.springframework.ldap.core.LdapOperations, javax.naming.Name, String[]) * @see #lookupAttributeValues(org.springframework.ldap.core.LdapOperations, javax.naming.Name, String) * @since 1.3.2 diff --git a/src/docs/asciidoc/index.adoc b/src/docs/asciidoc/index.adoc index 29737cc6..15e30dfb 100644 --- a/src/docs/asciidoc/index.adoc +++ b/src/docs/asciidoc/index.adoc @@ -2567,7 +2567,7 @@ The last member of this package, the `LdifAggregator`, can be used to write LDIF === Incremental Retrieval of Multi-Valued Attributes -When there are a very large number of attribute values (>1500) for a specific attribute, Active Directory typically refuses to return all these values at once. Instead, the attribute values are returned according to the http://www.watersprings.org/pub/id/draft-kashi-incremental-00.txt[Incremental Retrieval of Multi-valued Properties] method. Doing so requires the calling part to inspect the returned attribute for specific markers and, if necessary, make additional lookup requests until all values are found. +When there are a very large number of attribute values (>1500) for a specific attribute, Active Directory typically refuses to return all these values at once. Instead, the attribute values are returned according to the https://tools.ietf.org/html/draft-kashi-incremental-00[Incremental Retrieval of Multi-valued Properties] method. Doing so requires the calling part to inspect the returned attribute for specific markers and, if necessary, make additional lookup requests until all values are found. Spring LDAP's `org.springframework.ldap.core.support.DefaultIncrementalAttributesMapper` helps when working with this kind of attributes, as follows: