Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for AuthScope (0.05 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. 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)
Back to Top