mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-04-01 12:58:25 +00:00
Improve JavaDocs.
This commit is contained in:
parent
cfc9163e14
commit
bf53abf46e
@ -4,6 +4,8 @@ Changes in version 0.x (2004-xx-xx)
|
|||||||
* Added additional DaoAuthenticationProvider event when user not found
|
* Added additional DaoAuthenticationProvider event when user not found
|
||||||
* Added Authentication.getDetails() to DaoAuthenticationProvider response
|
* Added Authentication.getDetails() to DaoAuthenticationProvider response
|
||||||
* Fixed EH-CACHE-based caching implementation behaviour when cache exists
|
* 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)
|
Changes in version 0.6 (2004-08-09)
|
||||||
-----------------------------------
|
-----------------------------------
|
||||||
|
@ -72,6 +72,14 @@ public class ReflectionSaltSource implements SaltSource, InitializingBean {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The method name to call to obtain the salt. If your
|
||||||
|
* <code>UserDetails</code> contains a <code>UserDetails.getSalt()</code>
|
||||||
|
* method, you should set this property to <code>getSalt</code>.
|
||||||
|
*
|
||||||
|
* @param userPropertyToUse the name of the <b>getter</b> to call to obtain
|
||||||
|
* the salt from the <code>UserDetails</code>
|
||||||
|
*/
|
||||||
public void setUserPropertyToUse(String userPropertyToUse) {
|
public void setUserPropertyToUse(String userPropertyToUse) {
|
||||||
this.userPropertyToUse = userPropertyToUse;
|
this.userPropertyToUse = userPropertyToUse;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user