- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for clearOriginalPassword (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/opensearch/user/exentity/User.java
} /** * Clears the original password from memory. * Should be called after the password has been used for authentication or provisioning. */ public void clearOriginalPassword() { this.originalPassword = null; } @Override public String[] getPermissions() { final FessConfig fessConfig = ComponentUtil.getFessConfig();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 02 06:22:27 GMT 2026 - 4.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
e.getMessage(), e); throw e; } finally { user.clearOriginalPassword(); } } /** * Changes the password for a user identified by username. * Updates both the authentication manager and the database with the new encrypted password. *
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/test/java/org/codelibs/fess/app/service/UserServiceTest.java
final User user = new User(); user.setOriginalPassword("secretpassword"); assertEquals("secretpassword", user.getOriginalPassword()); user.clearOriginalPassword(); assertNull(user.getOriginalPassword()); } @Test public void test_user_getId() { final User user = new User(); assertNull(user.getId());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jan 15 12:54:47 GMT 2026 - 12.8K bytes - Click Count (0)