Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getInfoMap (0.04 sec)

  1. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

                @Override
                public void putToInfoMap(String key, String value) {
                    infoMap.put(key, value);
                }
    
                @Override
                public Map<String, String> getInfoMap(String sessionId) {
                    return new HashMap<>(infoMap);
                }
            };
            ComponentUtil.register(crawlingInfoHelper, "crawlingInfoHelper");
    
            systemHelper = new SystemHelper() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

         *
         * @param sessionId the session ID to retrieve parameters for
         * @return a map containing all key-value parameter pairs for the session
         */
        public Map<String, String> getInfoMap(final String sessionId) {
            final List<CrawlingInfoParam> crawlingInfoParamList = getCrawlingInfoService().getLastCrawlingInfoParamList(sessionId);
            final Map<String, String> map = new HashMap<>();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/exec/Crawler.java

                } catch (final Exception e) {
                    logger.warn("Failed to store crawling information.", e);
                }
    
                final Map<String, String> infoMap = crawlingInfoHelper.getInfoMap(options.sessionId);
    
                final StringBuilder buf = new StringBuilder(500);
                for (final Map.Entry<String, String> entry : infoMap.entrySet()) {
                    if (buf.length() != 0) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 31K bytes
    - Viewed (0)
Back to top