Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 6 of 6 for AuthScope (0.35 seconds)

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

         *
         * @return the {@link AuthScope} object representing the authentication scope.
         */
        public AuthScope getAuthScope() {
            return authScope;
        }
    
        /**
         * Sets the authentication scope.
         *
         * @param authScope the authentication scope to set
         */
        public void setAuthScope(final AuthScope authScope) {
            this.authScope = authScope;
        }
    
        /**
    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

         *
         * @return the {@link AuthScope} object representing the authentication scope.
         */
        public AuthScope getAuthScope() {
            return authScope;
        }
    
        /**
         * Sets the authentication scope.
         *
         * @param authScope the authentication scope to set
         */
        public void setAuthScope(final AuthScope authScope) {
            this.authScope = authScope;
        }
    
        /**
    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 {
                    final AuthScope authScope = authentication.getAuthScope();
                    credentialsProvider.setCredentials(authScope, authentication.getCredentials());
                    if (authScope.getHost() != null && authScheme != null) {
                        final HttpHost targetHost = new HttpHost(authScope.getSchemeName(), authScope.getHost(), authScope.getPort());
    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

                } else {
                    final AuthScope authScope = authentication.getAuthScope();
                    credentialsProvider.setCredentials(authScope, authentication.getCredentials());
                    if (authScope.getHost() != null && authScheme != null) {
                        final HttpHost targetHost = new HttpHost(authScope.getHost(), authScope.getPort());
                        authCache.put(targetHost, authScheme);
    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)
  5. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

            }
    
            final WebAuthenticationConfig config = new WebAuthenticationConfig();
    
            // host/port/realm: only set if not blank (null means "any" - AuthScope.ANY equivalent)
            if (StringUtil.isNotBlank(getHostname())) {
                config.setHost(getHostname());
            }
            if (getPort() != null) {
                config.setPort(getPort());
            }
    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)
  6. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

            }
    
            final WebAuthenticationConfig config = new WebAuthenticationConfig();
    
            // host/port/realm: only set if not blank (null means "any" - AuthScope.ANY equivalent)
            final String host = paramMap.get(prefix + "host");
            if (StringUtil.isNotBlank(host)) {
                config.setHost(host);
            }
    
    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)
Back to Top