From fc1450f72c1405f34b01ae17f41b2f4f05c3b31e Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Tue, 14 Jul 2015 13:36:41 -0500 Subject: [PATCH] SEC-2493: Fix javadoc for DefaultLdapAuthoritiesPopulator --- .../ldap/userdetails/DefaultLdapAuthoritiesPopulator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ldap/src/main/java/org/springframework/security/ldap/userdetails/DefaultLdapAuthoritiesPopulator.java b/ldap/src/main/java/org/springframework/security/ldap/userdetails/DefaultLdapAuthoritiesPopulator.java index faad03d503..b9a160c0da 100644 --- a/ldap/src/main/java/org/springframework/security/ldap/userdetails/DefaultLdapAuthoritiesPopulator.java +++ b/ldap/src/main/java/org/springframework/security/ldap/userdetails/DefaultLdapAuthoritiesPopulator.java @@ -72,12 +72,12 @@ import java.util.Set; * The configuration below shows how the group search might be performed with the above schema. *
  * <bean id="ldapAuthoritiesPopulator"
- *       class="org.springframework.security.authentication.ldap.populator.DefaultLdapAuthoritiesPopulator">
+ *       class="org.springframework.security.ldap.userdetails.DefaultLdapAuthoritiesPopulator">
  *   <constructor-arg ref="contextSource"/>
  *   <constructor-arg value="ou=groups"/>
  *   <property name="groupRoleAttribute" value="ou"/>
  * <!-- the following properties are shown with their default values -->
- *   <property name="searchSubTree" value="false"/>
+ *   <property name="searchSubtree" value="false"/>
  *   <property name="rolePrefix" value="ROLE_"/>
  *   <property name="convertToUpperCase" value="true"/>
  * </bean>