Added some @since tags.

This commit is contained in:
Mattias Arthursson
2008-10-23 07:45:33 +00:00
parent 76b37c7987
commit 59f7e01d73
2 changed files with 3 additions and 0 deletions

View File

@@ -19,6 +19,7 @@ package org.springframework.ldap.support;
* Callback interface for use when looping through Attribute values.
*
* @author Mattias Hellborg Arthursson
* @since 1.3
*/
public interface AttributeValueCallbackHandler {
/**

View File

@@ -239,6 +239,7 @@ public final class LdapUtils {
* @param collection the collection to collect the values in.
* @throws NoSuchAttributeException if no attribute with the specified name
* exists.
* @since 1.3
*/
public static void collectAttributeValues(Attributes attributes, String name, Collection collection) {
Assert.notNull(attributes, "Attributes must not be null");
@@ -255,6 +256,7 @@ public final class LdapUtils {
* the specified callbackHandler.
* @param attribute the Attribute to work with; not <code>null</code>.
* @param callbackHandler the callbackHandler; not <code>null</code>.
* @since 1.3
*/
public static void iterateAttributeValues(Attribute attribute, AttributeValueCallbackHandler callbackHandler) {
Assert.notNull(attribute, "Attribute must not be null");