- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getStopwordsList (0.17 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java
}); } protected void searchPaging(final RenderData data, final SearchForm form) { // page navi RenderDataUtil.register(data, "stopwordsItemItems", stopwordsService.getStopwordsList(form.dictId, stopwordsPager)); // restore from pager BeanUtil.copyBeanToBean(stopwordsPager, form, op -> { op.exclude(Constants.PAGER_CONVERSION_RULE); }); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
public class StopwordsService { @Resource protected DictionaryManager dictionaryManager; @Resource protected FessConfig fessConfig; public List<StopwordsItem> getStopwordsList(final String dictId, final StopwordsPager stopwordsPager) { return getStopwordsFile(dictId).map(file -> { final int pageSize = stopwordsPager.getPageSize();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
final StopwordsPager pager = copyBeanToNewBean(body, StopwordsPager.class); return asJson(new ApiResult.ApiConfigsResponse<EditBody>() .settings(stopwordsService.getStopwordsList(body.dictId, pager).stream() .map(stopwordsItem -> createEditBody(stopwordsItem, dictId)).collect(Collectors.toList())) .status(ApiResult.Status.OK).result()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.2K bytes - Viewed (0)