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; }