Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getAllFileConfigList (0.34 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

         * (withLabelType=true, withRoleType=true, available=true, idList=null).
         *
         * @return a list of all available FileConfig objects
         */
        public List<FileConfig> getAllFileConfigList() {
            return getAllFileConfigList(true, true, true, null);
        }
    
        /**
         * Retrieves file crawling configurations filtered by a list of IDs.
         * If the ID list is null, returns all available configurations.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 19.5K bytes
    - Click Count (1)
  2. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

            // Test with available=false
            List<FileConfig> configList = crawlingConfigHelper.getAllFileConfigList(true, true, false, null);
            assertEquals(1, configList.size());
    
            // Test with idList parameter
            List<String> idList = List.of("F1", "F2");
            configList = crawlingConfigHelper.getAllFileConfigList(true, true, true, idList);
            assertEquals(1, configList.size());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 35.3K bytes
    - Click Count (0)
Back to Top