Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 156 for dictId (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

         *
         * @param dictId the dictionary ID
         * @param body the request body containing Kuromoji item information
         * @return JSON response with result status
         */
        // POST /api/admin/dict/kuromoji/setting/{dictId}
        @Execute
        public JsonResponse<ApiResult> post$setting(final String dictId, final CreateBody body) {
            body.dictId = dictId;
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

         *
         * @param dictId identifier of the dictionary
         * @param body search criteria and paging parameters
         * @return JSON response containing list of entries
         */
        // GET /api/admin/dict/protwords/settings/{dictId}
        @Execute
        public JsonResponse<ApiResult> get$settings(final String dictId, final SearchBody body) {
            body.dictId = dictId;
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

        public HtmlResponse downloadpage(final String dictId) {
            saveToken();
            return asHtml(path_AdminDictStopwords_AdminDictStopwordsDownloadJsp).useForm(DownloadForm.class, op -> {
                op.setup(form -> {
                    form.dictId = dictId;
                });
            }).renderWith(data -> {
                stopwordsService.getStopwordsFile(dictId).ifPresent(file -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

         *
         * @param dictId the dictionary ID
         * @param body the request body containing stopwords item information
         * @return JSON response with result status
         */
        // POST /api/admin/dict/stopwords/setting/{dictId}
        @Execute
        public JsonResponse<ApiResult> post$setting(final String dictId, final CreateBody body) {
            body.dictId = dictId;
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

        public HtmlResponse downloadpage(final String dictId) {
            saveToken();
            return asHtml(path_AdminDictMapping_AdminDictMappingDownloadJsp).useForm(DownloadForm.class, op -> {
                op.setup(form -> {
                    form.dictId = dictId;
                });
            }).renderWith(data -> {
                charMappingService.getCharMappingFile(dictId).ifPresent(file -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

        public HtmlResponse downloadpage(final String dictId) {
            saveToken();
            return asHtml(path_AdminDictProtwords_AdminDictProtwordsDownloadJsp).useForm(DownloadForm.class, op -> {
                op.setup(form -> {
                    form.dictId = dictId;
                });
            }).renderWith(data -> {
                protwordsService.getProtwordsFile(dictId).ifPresent(file -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/KuromojiService.java

        }
    
        /**
         * Get a list of Kuromoji items.
         *
         * @param dictId The dictionary ID.
         * @param kuromojiPager The pager for Kuromoji.
         * @return A list of Kuromoji items.
         */
        public List<KuromojiItem> getKuromojiList(final String dictId, final KuromojiPager kuromojiPager) {
            return getKuromojiFile(dictId).map(file -> {
                final int pageSize = kuromojiPager.getPageSize();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

         *
         * @param dictId the dictionary ID
         * @param body the request body containing synonym item information
         * @return JSON response with result status
         */
        // POST /api/admin/dict/synonym/setting/{dictId}
        @Execute
        public JsonResponse<ApiResult> post$setting(final String dictId, final CreateBody body) {
            body.dictId = dictId;
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

                    });
                    form.dictId = dictId;
                });
            });
        }
    
        // -----------------------------------------------------
        //                                              Download
        //                                               -------
        /**
         * Show the download page.
         * @param dictId The dictionary ID.
         * @return The HTML response.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                                () -> asListHtml(dictId));
                    });
                    form.id = id;
                    form.crudMode = crudMode;
                    form.dictId = dictId;
                });
            });
        }
    
        // -----------------------------------------------------
        //                                              Download
        //                                               -------
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
Back to top