Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for getNtlmParameters (0.06 seconds)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/WebAuthenticationConfig.java

        /**
         * Gets the NTLM-specific parameters.
         * Used when authSchemeType is NTLM.
         *
         * @return the NTLM parameters
         */
        public Map<String, String> getNtlmParameters() {
            return ntlmParameters;
        }
    
        /**
         * Sets the NTLM-specific parameters.
         *
         * @param ntlmParameters the NTLM parameters
         */
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Fri Jan 09 23:46:52 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java

                        if (result == null) {
                            result = new Properties();
                        }
                        final Map<String, String> ntlmParams = config.getNtlmParameters();
                        if (ntlmParams != null) {
                            ntlmParams.forEach(result::setProperty);
                        }
                    }
                }
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sat Jan 31 12:23:29 GMT 2026
    - 62.2K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java

                        final Properties props = new Properties();
                        final Map<String, String> ntlmParams = config.getNtlmParameters();
                        if (ntlmParams != null) {
                            ntlmParams.forEach(props::setProperty);
                        }
                        authScheme = new NTLMScheme(new JcifsEngine(props));
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Fri Jan 09 23:46:52 GMT 2026
    - 54.4K bytes
    - Click Count (0)
Back to Top