Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for Download (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

                });
            });
        }
    
        /**
         * Download the stopwords file.
         *
         * @param form the download form containing dictionary ID
         * @return action response with the file download stream
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public ActionResponse download(final DownloadForm form) {
            validate(form, messages -> {}, () -> downloadpage(form.dictId));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java

        }
    
        /**
         * Downloads Kuromoji dictionary file.
         *
         * @param dictId the dictionary ID
         * @param body the download request body
         * @return stream response containing the dictionary file data
         */
        // GET /api/admin/dict/kuromoji/download/{dictId}
        @Execute
        public StreamResponse get$download(final String dictId, final DownloadBody body) {
    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/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java

        }
    
        /**
         * Download the protected words file for the specified dictionary.
         *
         * @param dictId identifier of the dictionary
         * @param body download request payload
         * @return stream response with file content
         */
        // GET /api/admin/dict/protwords/download/{dictId}
        @Execute
        public StreamResponse get$download(final String dictId, final DownloadBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java

        }
    
        /**
         * Downloads bad word settings as a CSV file.
         *
         * @param body the download request body containing download parameters
         * @return stream response containing the CSV file data
         */
        // GET /api/admin/badword/download
        @Execute
        public StreamResponse get$download(final DownloadBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java

        }
    
        /**
         * Downloads stopwords dictionary file.
         *
         * @param dictId the dictionary ID
         * @param body the download request body
         * @return stream response containing the dictionary file data
         */
        // GET /api/admin/dict/stopwords/download/{dictId}
        @Execute
        public StreamResponse get$download(final String dictId, final DownloadBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java

                });
            });
        }
    
        /**
         * Download a char mapping file.
         * @param form The download form.
         * @return The action response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public ActionResponse download(final DownloadForm form) {
            validate(form, messages -> {}, () -> downloadpage(form.dictId));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/AdminDictSynonymAction.java

                });
            });
        }
    
        /**
         * Downloads the synonym dictionary file.
         *
         * @param form the download form containing download parameters
         * @return ActionResponse with the file download stream
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public ActionResponse download(final DownloadForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 23.7K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

        }
    
        // GET /api/admin/elevateword/download
        /**
         * Downloads all elevate words as a CSV file.
         * Creates a temporary file with the exported data for download.
         *
         * @param body download parameters
         * @return stream response containing the CSV file
         */
        @Execute
        public StreamResponse get$download(final DownloadBody body) {
            validateApi(body, messages -> {});
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

                });
            });
        }
    
        /**
         * Download the protected words.
         * @param form The download form.
         * @return The action response.
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public ActionResponse download(final DownloadForm form) {
            validate(form, messages -> {}, () -> downloadpage(form.dictId));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java

        }
    
        /**
         * Downloads synonym dictionary file.
         *
         * @param dictId the dictionary ID
         * @param body the download request body
         * @return stream response containing the dictionary file data
         */
        // GET /api/admin/dict/synonym/download/{dictId}
        @Execute
        public StreamResponse get$download(final String dictId, final DownloadBody body) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 9.3K bytes
    - Viewed (0)
Back to top