Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setClientMap (0.14 seconds)

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

        }
    
        /**
         * Sets the client map for the wrapped factory.
         * @param clientMap The map of clients.
         */
        @Override
        public void setClientMap(final Map<Pattern, CrawlerClient> clientMap) {
            factory.setClientMap(clientMap);
        }
    
        /**
         * Compares this wrapper to another object for equality.
         * Equality is determined by the wrapped factory.
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sun Jul 06 02:13:03 GMT 2025
    - 5.2K bytes
    - Click Count (10)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/CrawlerClientFactory.java

                    client.setInitParameterMap(params);
                }
            }
        }
    
        /**
         * Sets the client map.
         * @param clientMap The map of clients.
         */
        public void setClientMap(final Map<Pattern, CrawlerClient> clientMap) {
            this.clientMap = clientMap;
        }
    
        /**
         * Closes all clients in the factory.
         */
        @Override
        public void close() {
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Mon Nov 24 03:59:47 GMT 2025
    - 7.3K bytes
    - Click Count (0)
Back to Top