Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for ldap_provider_url (0.17 sec)

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

        public static final String LABELS_general_storage = "{labels.general_storage}";
    
        /** The key of the message: LDAP URL */
        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 */
    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

        @Size(max = 10)
        public String suggestDocuments;
    
        @Min(0)
        @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)
    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.setSuggestDocuments(isCheckboxEnabled(form.suggestDocuments));
            fessConfig.setPurgeSuggestSearchLogDay(form.purgeSuggestSearchLogDay);
            fessConfig.setLdapProviderUrl(form.ldapProviderUrl);
            fessConfig.setLdapSecurityPrincipal(form.ldapSecurityPrincipal);
            fessConfig.setLdapAdminSecurityPrincipal(form.ldapAdminSecurityPrincipal);
    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