Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

            pathMappingHelper.setPathMappingList(null, pathMappingList);
            assertNull(pathMappingHelper.getPathMappingList("test"));
        }
    
        public void test_setPathMappingList_withNullList() {
            final String sessionId = "test";
            final List<PathMapping> pathMappingList = new ArrayList<PathMapping>();
            pathMappingHelper.setPathMappingList(sessionId, pathMappingList);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

        }
    
        /**
         * Sets the path mapping list for a session.
         *
         * @param sessionId the session ID
         * @param pathMappingList the path mapping list
         */
        public void setPathMappingList(final String sessionId, final List<PathMapping> pathMappingList) {
            if (sessionId != null) {
                if (pathMappingList != null) {
                    pathMappingMap.put(sessionId, pathMappingList);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            ComponentUtil.register(systemProperties, "systemProperties");
    
            pathMappingHelper = new PathMappingHelper() {
                @Override
                public void setPathMappingList(String sessionId,
                        List<org.codelibs.fess.opensearch.config.exentity.PathMapping> pathMappingList) {
                    // Mock implementation
                }
    
                @Override
    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

                final List<String> ptList = new ArrayList<>();
                ptList.add(Constants.PROCESS_TYPE_CRAWLING);
                ptList.add(Constants.PROCESS_TYPE_BOTH);
                pathMappingHelper.setPathMappingList(options.sessionId, pathMappingService.getPathMappingList(ptList));
    
                // duplicate host
                try {
                    final DuplicateHostHelper duplicateHostHelper = ComponentUtil.getDuplicateHostHelper();
    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