Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getLdapAdminSecurityPrincipal (0.26 sec)

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

            form.ldapProviderUrl = fessConfig.getLdapProviderUrl();
            form.ldapSecurityPrincipal = fessConfig.getLdapSecurityPrincipal();
            form.ldapAdminSecurityPrincipal = fessConfig.getLdapAdminSecurityPrincipal();
            form.ldapAdminSecurityCredentials =
                    StringUtil.isNotBlank(fessConfig.getLdapAdminSecurityCredentials()) ? DUMMY_PASSWORD : StringUtil.EMPTY;
    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.getLdapInitialContextFactory(), //
                    fessConfig.getLdapSecurityAuthentication(), fessConfig.getLdapProviderUrl(), //
                    fessConfig.getLdapAdminSecurityPrincipal(), //
                    fessConfig.getLdapAdminSecurityCredentials());
        }
    
        /**
         * Creates the search environment for LDAP connection.
         *
         * @param username The username.
    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

        }
    
        default void setLdapAdminSecurityPrincipal(final String value) {
            setSystemProperty(Constants.LDAP_ADMIN_SECURITY_PRINCIPAL, value);
        }
    
        default String getLdapAdminSecurityPrincipal() {
            return getSystemProperty(Constants.LDAP_ADMIN_SECURITY_PRINCIPAL);
        }
    
        default void setLdapAdminSecurityCredentials(final String value) {
    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