Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for removePathMappingList (0.07 sec)

  1. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

                    pathMappingMap.put(sessionId, pathMappingList);
                } else {
                    removePathMappingList(sessionId);
                }
            }
        }
    
        /**
         * Removes the path mapping list for a session.
         *
         * @param sessionId the session ID
         */
        public void removePathMappingList(final String sessionId) {
            pathMappingMap.remove(sessionId);
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

            assertNotNull(pathMappingHelper.getPathMappingList(sessionId));
            assertNull(pathMappingHelper.getPathMappingList(sessionId + "1"));
            pathMappingHelper.removePathMappingList(sessionId);
            assertNull(pathMappingHelper.getPathMappingList(sessionId));
            assertNull(pathMappingHelper.getPathMappingList(sessionId + "1"));
    
        }
    
        public void test_replaceUrl() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

                        List<org.codelibs.fess.opensearch.config.exentity.PathMapping> pathMappingList) {
                    // Mock implementation
                }
    
                @Override
                public void removePathMappingList(String sessionId) {
                    // Mock implementation
                }
            };
            ComponentUtil.register(pathMappingHelper, "pathMappingHelper");
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 30.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/exec/Crawler.java

            } catch (final Throwable t) {
                logger.warn("An exception occurs on the crawl task.", t);
                return Constants.EXIT_FAIL;
            } finally {
                pathMappingHelper.removePathMappingList(options.sessionId);
                crawlingInfoHelper.putToInfoMap(Constants.CRAWLER_STATUS, errors.isEmpty() ? Constants.T.toString() : Constants.F.toString());
                if (!errors.isEmpty()) {
    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