Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getWebConfigByName (0.14 sec)

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

            return switch (configType) {
            case WEB -> {
                final WebConfigService webConfigService = ComponentUtil.getComponent(WebConfigService.class);
                yield webConfigService.getWebConfigByName(name).map(o -> (CrawlingConfig) o);
            }
            case FILE -> {
                final FileConfigService fileConfigService = ComponentUtil.getComponent(FileConfigService.class);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    }
                    return OptionalEntity.of(webConfig);
                }
    
                @Override
                public OptionalEntity<WebConfig> getWebConfigByName(String name) {
                    final WebConfig webConfig = new WebConfig();
                    webConfig.setId("01T");
                    webConfig.setName("__TEMPLATE__");
                    return OptionalEntity.of(webConfig);
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top