소스 검색

Make isPasswordCorrect protected to facilitate subclass use.

Ben Alex 21 년 전
부모
커밋
46f17bed79
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/src/main/java/org/acegisecurity/providers/dao/DaoAuthenticationProvider.java

+ 1 - 1
core/src/main/java/org/acegisecurity/providers/dao/DaoAuthenticationProvider.java

@@ -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) {