Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getAuthScheme (0.07 seconds)

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

        }
    
        /**
         * Retrieves the authentication scheme to be used for HTTP requests.
         *
         * @return the authentication scheme
         */
        public AuthScheme getAuthScheme() {
            return authScheme;
        }
    
        /**
         * Sets the authentication scheme.
         * @param authScheme The authentication scheme to set.
         */
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 14:22:26 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5Authentication.java

        }
    
        /**
         * Retrieves the authentication scheme to be used for HTTP requests.
         *
         * @return the authentication scheme
         */
        public AuthScheme getAuthScheme() {
            return authScheme;
        }
    
        /**
         * Sets the authentication scheme.
         * @param authScheme The authentication scheme to set.
         */
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 14:22:26 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java

                        }
                    }
                }
            } else if (value instanceof Hc5Authentication[]) {
                for (final Hc5Authentication auth : (Hc5Authentication[]) value) {
                    if (auth.getAuthScheme() instanceof NTLMScheme) {
                        if (result == null) {
                            result = new Properties();
                        }
                    }
                }
            }
    
    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)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java

            final List<Pair<Hc4FormScheme, Credentials>> formSchemeList = new ArrayList<>();
            for (final Hc4Authentication authentication : siteCredentialList) {
                final AuthScheme authScheme = authentication.getAuthScheme();
                if (authScheme instanceof Hc4FormScheme) {
                    formSchemeList.add(new Pair<>((Hc4FormScheme) authScheme, authentication.getCredentials()));
                } else {
    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