Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for getWebConfigIdList (0.09 seconds)

  1. src/main/java/org/codelibs/fess/exec/Crawler.java

            /**
             * Parses the web configuration IDs string into a list.
             *
             * @return list of web configuration IDs, or null if none specified
             */
            protected List<String> getWebConfigIdList() {
                if (StringUtil.isNotBlank(webConfigIds)) {
                    final String[] values = webConfigIds.split(",");
                    return createConfigIdList(values);
                }
                return null;
    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)
  2. src/test/java/org/codelibs/fess/exec/CrawlerTest.java

            options.webConfigIds = null;
    
            List<String> result = options.getWebConfigIdList();
            assertNull(result);
        }
    
        @Test
        public void test_Options_getWebConfigIdList_withEmpty() {
            Crawler.Options options = new Crawler.Options();
            options.webConfigIds = "";
    
            List<String> result = options.getWebConfigIdList();
            assertNull(result);
        }
    
        @Test
    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)
Back to Top