Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getBoostDocumentRuleList (0.12 sec)

  1. src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java

        @Resource
        protected BoostDocumentRuleBhv boostDocumentRuleBhv;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<BoostDocumentRule> getBoostDocumentRuleList(final BoostDocPager boostDocumentRulePager) {
    
            final PagingResultBean<BoostDocumentRule> boostDocumentRuleList = boostDocumentRuleBhv.selectPage(cb -> {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/boostdoc/AdminBoostdocAction.java

            });
        }
    
        protected void searchPaging(final RenderData data, final SearchForm form) {
            RenderDataUtil.register(data, "boostDocumentRuleItems", boostDocumentRuleService.getBoostDocumentRuleList(boostDocPager)); // page navi
    
            // restore from pager
            copyBeanToBean(boostDocPager, form, op -> op.include("urlExpr", "boostExpr"));
        }
    
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/boostdoc/ApiAdminBoostdocAction.java

            validateApi(body, messages -> {});
            final BoostDocPager pager = copyBeanToNewBean(body, BoostDocPager.class);
            final List<BoostDocumentRule> list = boostDocumentRuleService.getBoostDocumentRuleList(pager);
            return asJson(new ApiConfigsResponse<EditBody>().settings(list.stream().map(this::createEditBody).collect(Collectors.toList()))
                    .total(pager.getAllRecordCount()).status(Status.OK).result());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top