Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getLdapSecurityPrincipal (0.07 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java

            assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(null));
            assertEquals("@fess.codelibs.local", fessConfig.getLdapSecurityPrincipal(""));
            assertEquals("******@****.***", fessConfig.getLdapSecurityPrincipal("123456789"));
            assertEquals("******@****.***", fessConfig.getLdapSecurityPrincipal("1234567890"));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.purgeSuggestSearchLogDay = fessConfig.getPurgeSuggestSearchLogDay();
            form.ldapProviderUrl = fessConfig.getLdapProviderUrl();
            form.ldapSecurityPrincipal = fessConfig.getLdapSecurityPrincipal();
            form.ldapAdminSecurityPrincipal = fessConfig.getLdapAdminSecurityPrincipal();
            form.ldapAdminSecurityCredentials =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        default String getStorageBucket() {
            return getSystemProperty(Constants.STORAGE_BUCKET, StringUtil.EMPTY);
        }
    
        Integer getLdapMaxUsernameLengthAsInteger();
    
        default String getLdapSecurityPrincipal(final String username) {
            final String value;
            final int maxLength = getLdapMaxUsernameLengthAsInteger();
            if (username == null) {
                value = StringUtil.EMPTY;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    fessConfig.getLdapInitialContextFactory(), //
                    fessConfig.getLdapSecurityAuthentication(), //
                    fessConfig.getLdapProviderUrl(), //
                    fessConfig.getLdapSecurityPrincipal(username), password);
        }
    
        /**
         * Creates the search environment for LDAP connection.
         *
         * @return The search environment for LDAP connection.
         */
    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