Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for ldap_security_principal (0.19 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_ldap_provider_url = "{labels.ldap_provider_url}";
    
        /** The key of the message: User DN */
        public static final String LABELS_ldap_security_principal = "{labels.ldap_security_principal}";
    
        /** The key of the message: Bind DN */
        public static final String LABELS_ldap_admin_security_principal = "{labels.ldap_admin_security_principal}";
    
        /** The key of the message: Password */
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Max(100000)
        @ValidateTypeFailure
        public Integer purgeSuggestSearchLogDay;
    
        @Size(max = 1000)
        public String ldapProviderUrl;
    
        @Size(max = 1000)
        public String ldapSecurityPrincipal;
    
        @Size(max = 1000)
        public String ldapAdminSecurityPrincipal;
    
        @Size(max = 1000)
        public String ldapAdminSecurityCredentials;
    
        @Size(max = 1000)
        public String ldapBaseDn;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setPurgeSuggestSearchLogDay(form.purgeSuggestSearchLogDay);
            fessConfig.setLdapProviderUrl(form.ldapProviderUrl);
            fessConfig.setLdapSecurityPrincipal(form.ldapSecurityPrincipal);
            fessConfig.setLdapAdminSecurityPrincipal(form.ldapAdminSecurityPrincipal);
            if (form.ldapAdminSecurityCredentials != null && StringUtil.isNotBlank(form.ldapAdminSecurityCredentials.replace("*", " "))) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top