Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for WebAuthenticationConfig (0.11 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

        private WebConfig webConfig;
    
        public WebAuthenticationConfig getWebAuthenticationConfig() {
            if (StringUtil.isEmpty(getUsername())) {
                throw new CrawlerSystemException(
                        "Username is empty in WebAuthentication configuration. A valid username must be provided for authentication.");
            }
    
            final WebAuthenticationConfig config = new WebAuthenticationConfig();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

    import org.codelibs.fess.crawler.client.http.config.CredentialsConfig.CredentialsType;
    import org.codelibs.fess.crawler.client.http.config.WebAuthenticationConfig;
    import org.codelibs.fess.crawler.client.http.config.WebAuthenticationConfig.AuthSchemeType;
    import org.codelibs.fess.crawler.client.smb.SmbAuthentication;
    import org.codelibs.fess.crawler.client.smb.SmbClient;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 17.7K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebConfig.java

            final List<WebAuthenticationConfig> authConfigList = new ArrayList<>();
            for (final WebAuthentication webAuth : webAuthList) {
                authConfigList.add(webAuth.getWebAuthenticationConfig());
            }
            paramMap.put(HcHttpClient.AUTHENTICATIONS_PROPERTY, authConfigList.toArray(new WebAuthenticationConfig[authConfigList.size()]));
    
            // request header
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 10.3K bytes
    - Click Count (0)
Back to Top