Make isPasswordCorrect protected to facilitate subclass use.

This commit is contained in:
Ben Alex 2004-06-21 06:17:20 +00:00
parent 1a0bec5bf1
commit 46f17bed79
1 changed files with 1 additions and 1 deletions

View File

@ -244,7 +244,7 @@ public class DaoAuthenticationProvider implements AuthenticationProvider,
}
}
private boolean isPasswordCorrect(Authentication authentication, User user) {
protected boolean isPasswordCorrect(Authentication authentication, User user) {
Object salt = null;
if (this.saltSource != null) {