- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 70 for pass_word (0.04 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertEquals("errors.password_no_lowercase", systemHelper.validatePassword("PASSWORD1!")); assertEquals("errors.password_no_digit", systemHelper.validatePassword("Password!")); assertEquals("errors.password_no_special_char", systemHelper.validatePassword("Password1")); assertEquals("", systemHelper.validatePassword("Password1!"));
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/test/java/org/codelibs/fess/util/ParameterUtilTest.java
assertTrue("Result should contain password={cipher}, but was: " + result, result.contains("password={cipher}")); // Test with empty encryption target value = "password="; result = ParameterUtil.encrypt(value); assertTrue(result.contains("password={cipher}")); // Test with only whitespace value value = "password= "; result = ParameterUtil.encrypt(value);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 22.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
assertTrue(testLdapManager.changePasswordCalled); } @Test public void test_changePassword_withNullPassword() { // Test password change with null password testLdapManager.changePasswordResult = false; testFessConfig.ldapAdminSyncPassword = false; boolean result = ldapChain.changePassword("testuser", null);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.5K bytes - Click Count (0) -
src/main/resources/fess_message_it.properties
errors.invalid_str_is_included = {0} non è valido in {1}. errors.blank_password = La password è obbligatoria. errors.password_length = La password deve contenere almeno {0} caratteri. errors.password_no_uppercase = La password deve contenere almeno una lettera maiuscola. errors.password_no_lowercase = La password deve contenere almeno una lettera minuscola. errors.password_no_digit = La password deve contenere almeno una cifra.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 13.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/user/AdminUserActionTest.java
} @Test public void test_createForm_setPassword() { final CreateForm form = new CreateForm(); form.password = "testpassword"; form.confirmPassword = "testpassword"; assertEquals("testpassword", form.password); assertEquals("testpassword", form.confirmPassword); } @Test public void test_createForm_setRolesAndGroups() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 5.3K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/PromotionProject.kt
} params { password("env.ORG_GRADLE_PROJECT_gradleS3AccessKey", "%gradleS3AccessKey%") password("env.ORG_GRADLE_PROJECT_gradleS3SecretKey", "%gradleS3SecretKey%") password("env.ORG_GRADLE_PROJECT_artifactoryUserPassword", "%gradle.internal.repository.build-tool.publish.password%") password("env.DOTCOM_DEV_DOCS_AWS_ACCESS_KEY", "%dotcomDevDocsAwsAccessKey%")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 15 19:30:24 GMT 2026 - 3.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/login/LoginAction.java
} return redirect(getClass()); } /** * Handles password change for the current user. * * @param form the password form containing new password and confirmation * @return the HTML response after password change attempt */ @Execute public HtmlResponse changePassword(final PasswordForm form) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 06:18:24 GMT 2026 - 8.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
} /** * Validates a password against configured password policy requirements. * * @param password The password to validate. * @return An empty string if the password is valid, or an error key for the validation failure. */ public String validatePassword(final String password) { if (StringUtil.isBlank(password)) { return "errors.blank_password"; }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/app/service/UserService.java
user.clearOriginalPassword(); } } /** * Changes the password for a user identified by username. * Updates both the authentication manager and the database with the new encrypted password. * * @param username the username of the user * @param password the new password in plain text * @throws FessUserNotFoundException if the user is not found */
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 06:22:27 GMT 2026 - 9.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
if (form.crudMode.intValue() == CrudMode.CREATE || StringUtil.isNotBlank(form.password)) { final String encodedPassword = ComponentUtil.getComponent(FessLoginAssist.class).encryptPassword(form.password); entity.setOriginalPassword(form.password); entity.setPassword(encodedPassword); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 06:18:24 GMT 2026 - 21K bytes - Click Count (0)