Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getKuromojiList (0.27 sec)

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

    public class KuromojiService {
        @Resource
        protected DictionaryManager dictionaryManager;
    
        @Resource
        protected FessConfig fessConfig;
    
        public List<KuromojiItem> getKuromojiList(final String dictId, final KuromojiPager kuromojiPager) {
            return getKuromojiFile(dictId).map(file -> {
                final int pageSize = kuromojiPager.getPageSize();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

            final KuromojiPager pager = copyBeanToNewBean(body, KuromojiPager.class);
            return asJson(new ApiResult.ApiConfigsResponse<EditBody>()
                    .settings(kuromojiService.getKuromojiList(body.dictId, pager).stream()
                            .map(protwordsItem -> createEditBody(protwordsItem, 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.3K bytes
    - Viewed (0)
Back to top