Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ssl (0.17 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            final String value = getSearchEngineHttpSslCertificateAuthorities();
            if (value != null) {
                return value;
            }
            return get("elasticsearch.http.ssl.certificate_authorities");
        }
    
        String getSearchEngineUsername();
    
        default String getFesenUsername() {
            final String value = getSearchEngineUsername();
            if (value != null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

            }
            final String authorities = fessConfig.getFesenHttpSslCertificateAuthorities();
            if (StringUtil.isNotBlank(authorities)) {
                builder.put("http.ssl.certificate_authorities", authorities);
            }
            return new HttpClient(builder.build(), null);
        }
    
        public boolean existsIndex(final String indexName) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 84.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/ldap/LdapManager.java

            putEnv(env, Context.SECURITY_CREDENTIALS, credntials);
            if (providerUrl != null && providerUrl.startsWith("ldaps://")) {
                putEnv(env, Context.SECURITY_PROTOCOL, "ssl");
            }
            return env;
        }
    
        protected void putEnv(final Hashtable<String, String> env, final String key, final String value) {
            if (value == null) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 65.9K bytes
    - Viewed (0)
Back to top