Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for getUserByName (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. 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)
Back to Top