|
@@ -52,13 +52,13 @@ public class PasswordService
|
|
|
}
|
|
|
if (retryCount.incrementAndGet() > Integer.valueOf(maxRetryCount).intValue())
|
|
|
{
|
|
|
- AsyncManager.me().execute(AsyncFactory.recordLogininfor(loginName, Constants.LOGIN_FAIL, MessageUtils.message("user.password.retry.limit.exceed"), maxRetryCount));
|
|
|
+ AsyncManager.me().execute(AsyncFactory.recordLogininfor(loginName, Constants.LOGIN_FAIL, MessageUtils.message("user.password.retry.limit.exceed", maxRetryCount)));
|
|
|
throw new UserPasswordRetryLimitExceedException(Integer.valueOf(maxRetryCount).intValue());
|
|
|
}
|
|
|
|
|
|
if (!matches(user, password))
|
|
|
{
|
|
|
- AsyncManager.me().execute(AsyncFactory.recordLogininfor(loginName, Constants.LOGIN_FAIL, MessageUtils.message("user.password.retry.limit.count"), retryCount, password));
|
|
|
+ AsyncManager.me().execute(AsyncFactory.recordLogininfor(loginName, Constants.LOGIN_FAIL, MessageUtils.message("user.password.retry.limit.count", retryCount, password)));
|
|
|
loginRecordCache.put(loginName, retryCount);
|
|
|
throw new UserPasswordNotMatchException();
|
|
|
}
|