Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 40 for oldMap (0.04 sec)

  1. src/main/resources/fess_config.properties

    ldap.role.search.role.enabled=true
    
    # LDAP attribute for surname.
    ldap.attr.surname=sn
    # LDAP attribute for given name.
    ldap.attr.givenName=givenName
    # LDAP attribute for employee number.
    ldap.attr.employeeNumber=employeeNumber
    # LDAP attribute for mail.
    ldap.attr.mail=mail
    # LDAP attribute for telephone number.
    ldap.attr.telephoneNumber=telephoneNumber
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/Constants.java

        // LDAP Configuration Constants
        // ============================================================
    
        /** LDAP base DN configuration key. */
        public static final String LDAP_BASE_DN = "ldap.base.dn";
    
        /** LDAP security principal configuration key. */
        public static final String LDAP_SECURITY_PRINCIPAL = "ldap.security.principal";
    
        /** LDAP admin security principal configuration key. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        public Integer purgeSuggestSearchLogDay;
    
        /**
         * LDAP server URL for authentication.
         * Used when LDAP authentication is enabled.
         */
        @Size(max = 1000)
        public String ldapProviderUrl;
    
        /**
         * LDAP security principal for binding to the LDAP server.
         * Used for authenticating with the LDAP server.
         */
        @Size(max = 1000)
        public String ldapSecurityPrincipal;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java

            Exception innerCause = new IllegalArgumentException("Invalid LDAP parameter");
            RuntimeException middleCause = new RuntimeException("LDAP configuration error", innerCause);
            LdapOperationException exception = new LdapOperationException("LDAP operation failed", middleCause);
    
            assertEquals("LDAP operation failed", exception.getMessage());
            assertEquals(middleCause, exception.getCause());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java

            String message = "LDAP error: \"Invalid <config>\" & 'bad chars' @ #$%^&*()";
            LdapConfigurationException exception = new LdapConfigurationException(message);
    
            assertEquals(message, exception.getMessage());
        }
    
        public void test_unicodeCharactersInMessage() {
            // Test with Unicode characters in message
            String message = "LDAP設定エラー: 接続失敗 🚫 ñ é ü ß";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. cn=%s */
        String LDAP_ADMIN_GROUP_FILTER = "ldap.admin.group.filter";
    
        /** The key of the configuration. e.g. ou=Group,dc=fess,dc=codelibs,dc=org */
        String LDAP_ADMIN_GROUP_BASE_DN = "ldap.admin.group.base.dn";
    
        /** The key of the configuration. e.g. groupOfNames */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/exception/LdapOperationException.java

     */
    package org.codelibs.fess.exception;
    
    /**
     * An exception thrown when an LDAP operation fails.
     */
    public class LdapOperationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new LDAP operation exception with the specified detail message and cause.
         *
         * @param message The detail message.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/GroupService.java

    import org.dbflute.optional.OptionalEntity;
    
    import jakarta.annotation.Resource;
    
    /**
     * Service class for managing group operations in the Fess application.
     * Provides CRUD operations for groups, including integration with LDAP manager
     * and user-group relationships. Handles group pagination, searching, and
     * maintaining data consistency between groups and associated users.
     */
    public class GroupService {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/exception/LdapConfigurationException.java

     */
    package org.codelibs.fess.exception;
    
    /**
     * An exception thrown when LDAP configuration is invalid.
     */
    public class LdapConfigurationException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Constructs a new LDAP configuration exception with the specified detail message.
         *
         * @param message The detail message.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    fessConfig.getLdapAdminSecurityCredentials());
        }
    
        /**
         * Updates the LDAP configuration.
         */
        public void updateConfig() {
            isBind = false;
        }
    
        /**
         * Validates the LDAP connection.
         *
         * @return True if the LDAP connection is valid, otherwise false.
         */
        protected boolean validate() {
            if (!isBind) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
Back to top