- Sort Score
- Num 10 results
- Language All
Results 1 - 1 of 1 for getUserByName (0.07 seconds)
-
src/main/java/org/codelibs/fess/app/service/UserService.java
/** * Retrieves a user by their username. * * @param username the username to search for * @return an OptionalEntity containing the user if found */ public OptionalEntity<User> getUserByName(final String username) { return userBhv.selectEntity(cb -> { cb.query().setName_Equal(username); }); } /** * Stores (inserts or updates) a user in the system.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)