Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for getRealm (0.06 seconds)

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

        }
    
        /**
         * Gets the authentication realm.
         *
         * @return the realm
         */
        public String getRealm() {
            return realm;
        }
    
        /**
         * Sets the authentication realm.
         *
         * @param realm the realm
         */
        public void setRealm(final String realm) {
            this.realm = realm;
        }
    
        /**
         * Gets the credentials configuration.
         *
    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)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/Hc4FormScheme.java

            return "form";
        }
    
        @Override
        public String getParameter(final String name) {
            return parameterMap.get(name);
        }
    
        @Override
        public String getRealm() {
            return null;
        }
    
        @Override
        public boolean isConnectionBased() {
            return false;
        }
    
        @Override
        public boolean isComplete() {
            return false;
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 14:22:26 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/form/Hc5FormScheme.java

         * @return The parameter value, or null if not found.
         */
        public String getParameter(final String name) {
            return parameterMap.get(name);
        }
    
        @Override
        public String getRealm() {
            return null;
        }
    
        @Override
        public boolean isConnectionBased() {
            return false;
        }
    
        @Override
        public boolean isChallengeComplete() {
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sun Jan 04 13:09:59 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc5HttpClient.java

            for (final WebAuthenticationConfig config : configs) {
                try {
                    final AuthScope authScope = new AuthScope(config.getScheme(), config.getHost(), config.getPort(), config.getRealm(), null // schemeName
                    );
    
                    final Credentials credentials = convertCredentials(config.getCredentials());
    
                    AuthScheme authScheme = null;
    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)
  5. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java

            for (final WebAuthenticationConfig config : configs) {
                try {
                    final AuthScope authScope = new AuthScope(config.getHost(), config.getPort(), config.getRealm(), config.getScheme());
    
                    final Credentials credentials = convertCredentials(config.getCredentials());
    
                    AuthScheme authScheme = null;
    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)
  6. src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java

                config.setHost(getHostname());
            }
            if (getPort() != null) {
                config.setPort(getPort());
            }
            if (StringUtil.isNotBlank(getAuthRealm())) {
                config.setRealm(getAuthRealm());
            }
    
            // AuthSchemeType の設定
            final String scheme = getProtocolScheme();
            if (Constants.BASIC.equals(scheme)) {
                config.setAuthSchemeType(AuthSchemeType.BASIC);
    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)
  7. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

                    logger.warn("Failed to parse port: {}", port, e);
                }
            }
    
            final String realm = paramMap.get(prefix + "realm");
            if (StringUtil.isNotBlank(realm)) {
                config.setRealm(realm);
            }
    
            // AuthSchemeType
            if (Constants.BASIC.equals(scheme)) {
                config.setAuthSchemeType(AuthSchemeType.BASIC);
            } else if (Constants.DIGEST.equals(scheme)) {
    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