Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getLdapAdminSecurityCredentials (0.38 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                    fessConfig.getLdapAdminSecurityCredentials());
        }
    
        public void updateConfig() {
            isBind = false;
        }
    
        protected boolean validate() {
            if (!isBind) {
                if (fessConfig.getLdapAdminSecurityPrincipal() == null || fessConfig.getLdapAdminSecurityCredentials() == null) {
                    // no credentials
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 65.9K 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
Back to top