Fixed small javadoc errors.

This commit is contained in:
Ulrik Sandberg
2007-10-30 22:49:35 +00:00
parent d1b9ea997a
commit ebd089068f
3 changed files with 5 additions and 7 deletions

View File

@@ -48,6 +48,6 @@ public abstract class AbstractParameterizedContextMapper<T> implements Parameter
* @param ctx the context to map to an object.
* @return an object built from the data in the context.
*/
protected abstract T doMapFromContext(DirContextOperations operations);
protected abstract T doMapFromContext(DirContextOperations ctx);
}

View File

@@ -111,9 +111,7 @@ public interface SimpleLdapOperations {
void bind(String dn, Object obj, Attributes attributes);
/**
* Remove an entry from the LDAP tree. The entry must not have any children -
* if you suspect that the entry might have descendants, use
* {@link #unbind(Name, boolean)} in stead.
* Remove an entry from the LDAP tree. The entry must not have any children.
*
* @param dn The distinguished name to unbind.
* @throws NamingException if any error occurs.
@@ -121,7 +119,7 @@ public interface SimpleLdapOperations {
void unbind(String dn);
/**
* Modify the Attributes of the entry corresponsing to the supplied
* Modify the Attributes of the entry corresponding to the supplied
* {@link DirContextOperations} instance. The instance should have been
* received from the {@link #lookupContext(String)} operation, and then modified to
* match the current state of the matching domain object, e.g.:

View File

@@ -110,7 +110,7 @@ public class DirContextAdapter implements DirContextOperations {
/**
* Create a new adapter from the supplied attributes and dn.
*
* @param originalAttrs
* @param attrs
* the attributes.
* @param dn
* the dn.
@@ -122,7 +122,7 @@ public class DirContextAdapter implements DirContextOperations {
/**
* Create a new adapter from the supplied attributes, dn, and base.
*
* @param originalAttrs
* @param attrs
* the attributes.
* @param dn
* the dn.