Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getStopwordsList (0.15 sec)

  1. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  2. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. 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: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top