- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 25 for doUpload (0.04 sec)
-
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) -
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) -
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) { 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) -
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) -
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) -
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) { 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) -
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) -
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) { 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 - 23.7K bytes - Viewed (1) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stemmeroverride/AdminDictStemmeroverrideAction.java
// Download // ------- /** * Display the download page for stemmer override dictionary file. * Shows the file path and provides download interface. * * @param dictId The dictionary ID to download * @return HTML response for the download page */ @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java
}); }); } /** * Download a kuromoji dictionary 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 - 21.5K bytes - Viewed (0)