Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for HC4 (0.04 seconds)

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

                    config.getPassword() != null ? config.getPassword().toCharArray() : null);
        }
    
        /**
         * Converts HC4 Hc4Authentication array to HC5 Hc5Authentication array.
         * This provides backward compatibility for existing configurations.
         *
         * @param hc4Auths the HC4 authentication array
         * @return the HC5 authentication array
         */
    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)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/Hc4HttpClient.java

            if (value == null) {
                return new Hc4Authentication[0];
            }
    
            // If already HC4 Hc4Authentication[], return directly
            if (value instanceof Hc4Authentication[]) {
                return (Hc4Authentication[]) value;
            }
    
            // If common POJO config, convert to HC4
            if (value instanceof WebAuthenticationConfig[]) {
    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)
Back to Top