Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

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

  1. 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)
  2. src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java

                    fileAuthenticationService.getFileAuthenticationList(fileAuthenticationPager)); // page navi
            RenderDataUtil.register(data, "displayCreateLink", !crawlingConfigHelper.getAllFileConfigList(false, false, false, null).isEmpty());
            // restore from pager
            copyBeanToBean(fileAuthenticationPager, form, op -> op.include("id"));
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 13:56:35 GMT 2025
    - 18.7K bytes
    - Click Count (0)
Back to Top