From 794795712d7ea8eba11da2a54070e8c0b7f97986 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Tue, 4 Dec 2007 00:00:50 +0000 Subject: [PATCH] Parameter renamed. --- .../security/providers/ldap/LdapAuthoritiesPopulator.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/org/springframework/security/providers/ldap/LdapAuthoritiesPopulator.java b/core/src/main/java/org/springframework/security/providers/ldap/LdapAuthoritiesPopulator.java index 38a65eaec6..e30a0391d4 100644 --- a/core/src/main/java/org/springframework/security/providers/ldap/LdapAuthoritiesPopulator.java +++ b/core/src/main/java/org/springframework/security/providers/ldap/LdapAuthoritiesPopulator.java @@ -38,11 +38,11 @@ public interface LdapAuthoritiesPopulator { /** * Get the list of authorities for the user. * - * @param user the context object which was returned by the LDAP authenticator. + * @param userData the context object which was returned by the LDAP authenticator. * * @return the granted authorities for the given user. * * @throws LdapDataAccessException if there is a problem accessing the directory. */ - GrantedAuthority[] getGrantedAuthorities(DirContextOperations user, String username) throws LdapDataAccessException; + GrantedAuthority[] getGrantedAuthorities(DirContextOperations userData, String username); }