- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getAuthSchemeType (0.51 seconds)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/config/WebAuthenticationConfig.java
this.credentials = credentials; } /** * Gets the authentication scheme type. * * @return the authentication scheme type */ public AuthSchemeType getAuthSchemeType() { return authSchemeType; } /** * Sets the authentication scheme type. * * @param authSchemeType the authentication scheme type */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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java
AuthScheme authScheme = null; if (config.getAuthSchemeType() == WebAuthenticationConfig.AuthSchemeType.FORM) { authScheme = new Hc5FormScheme(config.getFormParameters()); } else if (config.getAuthSchemeType() == WebAuthenticationConfig.AuthSchemeType.NTLM) { final Properties props = 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) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java
AuthScheme authScheme = null; if (config.getAuthSchemeType() == WebAuthenticationConfig.AuthSchemeType.FORM && config.getFormParameters() != null) { authScheme = new Hc4FormScheme(config.getFormParameters()); } else if (config.getAuthSchemeType() == WebAuthenticationConfig.AuthSchemeType.NTLM) { final Properties props = new Properties();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)