Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getLdapAdminSecurityCredentials (1.62 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.ldapAdminSecurityPrincipal = fessConfig.getLdapAdminSecurityPrincipal();
            form.ldapAdminSecurityCredentials =
                    StringUtil.isNotBlank(fessConfig.getLdapAdminSecurityCredentials()) ? DUMMY_PASSWORD : StringUtil.EMPTY;
            form.ldapBaseDn = fessConfig.getLdapBaseDn();
            form.ldapAccountFilter = fessConfig.getLdapAccountFilter();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    fessConfig.getLdapSecurityAuthentication(), fessConfig.getLdapProviderUrl(), //
                    fessConfig.getLdapAdminSecurityPrincipal(), //
                    fessConfig.getLdapAdminSecurityCredentials());
        }
    
        /**
         * Creates the search environment for LDAP connection.
         *
         * @param username The username.
         * @param password The password.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 82K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            setSystemProperty(Constants.LDAP_ADMIN_SECURITY_CREDENTIALS,
                    Constants.CIPHER_PREFIX + ComponentUtil.getPrimaryCipher().encrypt(value));
        }
    
        default String getLdapAdminSecurityCredentials() {
            final String value = getSystemProperty(Constants.LDAP_ADMIN_SECURITY_CREDENTIALS);
            if (StringUtil.isNotBlank(value) && value.startsWith(Constants.CIPHER_PREFIX)) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 86.5K bytes
    - Viewed (0)
Back to top