- Sort Score
- Result 10 results
- Languages All
Results 1 - 9 of 9 for newpassword (0.57 sec)
-
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
testFessConfig.ldapAdminSyncPassword = false; boolean result = ldapChain.changePassword("testuser", "newpassword"); assertFalse(result); // returns !changed || syncPassword = !true || false = false assertEquals("testuser", testLdapManager.changePasswordUsername); assertEquals("newpassword", testLdapManager.changePasswordPassword); assertTrue(testLdapManager.changePasswordCalled); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
assertEquals("{labels.profile_button}", FessLabels.LABELS_profile_button); // Test new password related labels assertEquals("{labels.login.newpassword}", FessLabels.LABELS_LOGIN_NEWPASSWORD); assertEquals("{labels.login.placeholder_new_password}", FessLabels.LABELS_LOGIN_placeholder_new_password);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
} public void test_loginPaths() throws Exception { // Test login-related paths assertEquals("/login/index.jsp", FessHtmlPath.path_Login_IndexJsp.getRoutingPath()); assertEquals("/login/newpassword.jsp", FessHtmlPath.path_Login_NewpasswordJsp.getRoutingPath()); } public void test_configPaths() throws Exception { // Test configuration paths
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/chain/AuthenticationChainTest.java
public void test_changePassword_failure() { TestAuthenticationChain chain = new TestAuthenticationChain(); chain.changePasswordResult = false; boolean result = chain.changePassword("testuser", "newpassword"); assertFalse(result); assertEquals(1, chain.changePasswordCalls.size()); } // Test changePassword with null username public void test_changePassword_nullUsername() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
return new NTCredentials(getUsername(), getPassword(), workstation == null ? StringUtil.EMPTY : workstation, domain == null ? StringUtil.EMPTY : domain); } return new UsernamePasswordCredentials(getUsername(), getPassword() == null ? StringUtil.EMPTY : getPassword()); } public WebConfig getWebConfig() { if (webConfig == null) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java
logger.warn("Failed to parse {}", port, e); } } smbAuth.setUsername(username); smbAuth.setPassword(password == null ? StringUtil.EMPTY : password); smbAuthList.add(smbAuth); final org.codelibs.fess.crawler.client.smb1.SmbAuthentication smb1Auth =
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/exbhv/UserBhv.java
try { final RESULT result = entityType.newInstance(); result.setName(DfTypeUtil.toString(source.get(NAME))); result.setPassword(DfTypeUtil.toString(source.get(PASSWORD))); result.setGroups(toStringArray(source.get(GROUPS))); result.setRoles(toStringArray(source.get(ROLES))); result.setAttributes(source.entrySet()
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 2.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java
this.username = username; this.password = password; } public String getUsername() { return username; } public String getPassword() { return password; } } // Test getLoginCredential method public void test_getLoginCredential_returnsValidCredential() { // Setup test credential
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/user/AdminUserAction.java
final String encodedPassword = ComponentUtil.getComponent(FessLoginAssist.class).encryptPassword(form.password); entity.setOriginalPassword(form.password); entity.setPassword(encodedPassword); } return entity; }); } /** * Creates a label/value map item for dropdowns or list displays. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.5K bytes - Viewed (0)