Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for setPathMappingList (0.08 seconds)

  1. 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
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 30.8K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/PathMappingHelperTest.java

            pathMappingHelper.setPathMappingList(null, pathMappingList);
            assertNull(pathMappingHelper.getPathMappingList("test"));
        }
    
        @Test
        public void test_setPathMappingList_withNullList() {
            final String sessionId = "test";
            final List<PathMapping> pathMappingList = new ArrayList<PathMapping>();
            pathMappingHelper.setPathMappingList(sessionId, pathMappingList);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  3. 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();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 32.4K bytes
    - Click Count (0)
Back to Top