소스 검색

login.error.authtype error

login.error.authtype error
MaxKey 4 년 전
부모
커밋
38d5c7d55a
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 2
      maxkey-core/src/main/java/org/maxkey/authn/AbstractAuthenticationProvider.java

+ 3 - 2
maxkey-core/src/main/java/org/maxkey/authn/AbstractAuthenticationProvider.java

@@ -165,7 +165,6 @@ public abstract class AbstractAuthenticationProvider {
     }
 
     protected void authTypeValid(String authType) {
-        final   String message = WebContext.getI18nValue("login.error.authtype");
         _logger.debug("Login AuthN Type  " + authType);
         if (authType != null && (
                 authType.equalsIgnoreCase("basic") 
@@ -173,7 +172,9 @@ public abstract class AbstractAuthenticationProvider {
             ) {
             return;
         }
-        _logger.debug("Login AuthN type must eq basic or tfa .");
+        
+        final   String message = WebContext.getI18nValue("login.error.authtype");
+        _logger.debug("Login AuthN type must eq basic or tfa , Error message is " + message);
         throw new BadCredentialsException(message);
     }