- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getProtwordsList (0.12 sec)
-
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
* @param dictId the dictionary ID * @param protwordsPager the pager for pagination * @return the list of protected words items */ public List<ProtwordsItem> getProtwordsList(final String dictId, final ProtwordsPager protwordsPager) { return getProtwordsFile(dictId).map(file -> { final int pageSize = protwordsPager.getPageSize();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
validateApi(body, messages -> {}); final ProtwordsPager pager = copyBeanToNewBean(body, ProtwordsPager.class); return asJson(new ApiResult.ApiConfigsResponse<EditBody>().settings(protwordsService.getProtwordsList(body.dictId, pager) .stream() .map(protwordsItem -> createEditBody(protwordsItem, dictId)) .collect(Collectors.toList())).status(ApiResult.Status.OK).result()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java
* @param form The search form. */ protected void searchPaging(final RenderData data, final SearchForm form) { // page navi RenderDataUtil.register(data, "protwordsItemItems", protwordsService.getProtwordsList(form.dictId, protwordsPager)); // restore from pager BeanUtil.copyBeanToBean(protwordsPager, form, op -> { op.exclude(Constants.PAGER_CONVERSION_RULE); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 20.1K bytes - Viewed (0)