From bf53abf46e65dd2604a57ee71c4aad09397e9baf Mon Sep 17 00:00:00 2001 From: Ben Alex Date: Wed, 18 Aug 2004 22:59:00 +0000 Subject: [PATCH] Improve JavaDocs. --- changelog.txt | 2 ++ .../providers/dao/salt/ReflectionSaltSource.java | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/changelog.txt b/changelog.txt index afc767d285..2498fa9881 100644 --- a/changelog.txt +++ b/changelog.txt @@ -4,6 +4,8 @@ Changes in version 0.x (2004-xx-xx) * Added additional DaoAuthenticationProvider event when user not found * Added Authentication.getDetails() to DaoAuthenticationProvider response * Fixed EH-CACHE-based caching implementation behaviour when cache exists +* Fixed Ant "release" target not including project.properties +* Documentation improvements Changes in version 0.6 (2004-08-09) ----------------------------------- diff --git a/core/src/main/java/org/acegisecurity/providers/dao/salt/ReflectionSaltSource.java b/core/src/main/java/org/acegisecurity/providers/dao/salt/ReflectionSaltSource.java index 3433587151..0e62b3c850 100644 --- a/core/src/main/java/org/acegisecurity/providers/dao/salt/ReflectionSaltSource.java +++ b/core/src/main/java/org/acegisecurity/providers/dao/salt/ReflectionSaltSource.java @@ -72,6 +72,14 @@ public class ReflectionSaltSource implements SaltSource, InitializingBean { } } + /** + * The method name to call to obtain the salt. If your + * UserDetails contains a UserDetails.getSalt() + * method, you should set this property to getSalt. + * + * @param userPropertyToUse the name of the getter to call to obtain + * the salt from the UserDetails + */ public void setUserPropertyToUse(String userPropertyToUse) { this.userPropertyToUse = userPropertyToUse; }