Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 388 for user1 (0.03 seconds)

  1. src/main/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticator.java

         * to avoid login delays when users have many nested group memberships.
         * @param user The Entra ID user to update.
         */
        public void updateMemberOf(final EntraIdUser user) {
            if (logger.isDebugEnabled()) {
                logger.debug("[updateMemberOf] Starting for user: {}", user.getName());
            }
    
            final List<String> groupList = new ArrayList<>();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:03:27 GMT 2026
    - 56.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/group/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing user groups in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing group entries,
     * including tracking information for optimistic locking and audit trails.
     * Groups are used to organize users and define access permissions.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/chat/ChatSessionManager.java

            if (cleanupTask != null && !cleanupTask.isCanceled()) {
                cleanupTask.cancel();
            }
        }
    
        /**
         * Creates a new chat session.
         *
         * @param userId the user ID (can be null for anonymous users)
         * @return the created session
         */
        public ChatSession createSession(final String userId) {
            final ChatSession session = new ChatSession(userId);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 07 13:27:59 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/chat/ChatClient.java

        /**
         * Performs a chat request with RAG.
         *
         * @param sessionId the session ID (can be null for new sessions)
         * @param userMessage the user's message
         * @param userId the user ID (can be null for anonymous users)
         * @return the chat response including session info and sources
         */
        public ChatResult chat(final String sessionId, final String userMessage, final String userId) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  5. MIGRATION.md

    **Via Admin UI**:
    1. Navigate to **System > Backup**
    2. Select configuration items to export:
       - Web Crawling Config
       - File Crawling Config
       - Data Store Config
       - Scheduled Jobs
       - Users and Roles
       - System Settings
    3. Click **Export**
    4. Download JSON file
    
    **Via API**:
    ```bash
    # Export all configurations
    curl -X GET "http://localhost:8080/api/admin/backup/export" \
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 12:40:11 GMT 2025
    - 23.2K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/UserInfoHelper.java

                return userCode;
            }).orElse(null);
        }
    
        /**
         * Extracts the user code from the user bean stored in the session.
         * This method retrieves the authenticated user information and creates an encrypted user code.
         *
         * @param request the HTTP servlet request
         * @return the user code from the user bean, or null if not found or invalid
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 14.9K bytes
    - Click Count (0)
  7. src/main/webapp/css/font-awesome.min.css

    ontent:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 55.8K bytes
    - Click Count (2)
  8. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            }
    
        }
    
        /**
         * Resolves the SPNEGO credential to a user entity.
         *
         * This method handles the resolution of SPNEGO credentials by checking
         * if the user is an admin user or needs to be authenticated through LDAP.
         *
         * @param resolver The credential resolver to use for user lookup
         */
        @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  9. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

     * </pre>
     *
     * <h2>Optional Configuration</h2>
     * <pre>
     * # User attribute mapping
     * saml.attribute.group.name=groups
     * saml.attribute.role.name=roles
     *
     * # Default groups/roles for authenticated users
     * saml.default.groups=user
     * saml.default.roles=user
     * </pre>
     *
     * <h2>Security Settings (Production)</h2>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 03:13:33 GMT 2026
    - 20.2K bytes
    - Click Count (3)
  10. architecture/standards/0006-use-of-provider-apis-in-gradle.md

        Property<String> getSomeProperty()
    }
    class Example {
        Property<NestedType> getNestedProperty()
    }
    ```
    
    This is unnecessary because users will have trouble creating instances of `NestedType` and merging different instances of `NestedType`. It's also more awkward for users to access the properties in the nested property.
    
    If the nested type is a managed type (Gradle can generate its implementation), you can define a nested property with:
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 10K bytes
    - Click Count (0)
Back to Top