- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for getPasswordMinLengthAsInteger (0.17 seconds)
-
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public Integer getPasswordMinLengthAsInteger() { return 8; } @Override public boolean isPasswordRequireUppercase() { return false; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 44.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
return !split(getPasswordInvalidAdminPasswords(), "\n") .get(stream -> stream.map(String::trim).filter(StringUtil::isNotEmpty).anyMatch(s -> s.equals(password))); } Integer getPasswordMinLengthAsInteger(); boolean isPasswordRequireUppercase(); boolean isPasswordRequireLowercase(); boolean isPasswordRequireDigit(); boolean isPasswordRequireSpecialChar();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
return "errors.blank_password"; } final FessConfig fessConfig = ComponentUtil.getFessConfig(); final Integer minLength = fessConfig.getPasswordMinLengthAsInteger(); if (minLength != null && minLength > 0 && password.length() < minLength) { return "errors.password_length"; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 43.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* @return The value of found property. (NotNull: if not found, exception but basically no way) * @throws NumberFormatException When the property is not integer. */ Integer getPasswordMinLengthAsInteger(); /** * Get the value for the key 'password.require.uppercase'. <br> * The value is, e.g. false <br> * comment: Require uppercase letters in password.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2)