- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for DownloadBody (0.3 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
* @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 -> {}); return kuromojiService.getKuromojiFile(body.dictId)
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/protwords/ApiAdminDictProtwordsAction.java
* @return stream response with file content */ // GET /api/admin/dict/protwords/download/{dictId} @Execute public StreamResponse get$download(final String dictId, final DownloadBody body) { body.dictId = dictId; validateApi(body, messages -> {}); return protwordsService.getProtwordsFile(body.dictId)
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/stopwords/ApiAdminDictStopwordsAction.java
* @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 -> {}); return stopwordsService.getStopwordsFile(body.dictId)
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/api/admin/badword/ApiAdminBadwordAction.java
* @return stream response containing the CSV file data */ // GET /api/admin/badword/download @Execute public StreamResponse get$download(final DownloadBody body) { validateApi(body, messages -> {}); return asStream("badword.csv").contentTypeOctetStream().stream(out -> {
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/api/admin/dict/synonym/ApiAdminDictSynonymAction.java
* @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) { body.dictId = dictId; validateApi(body, messages -> {}); return synonymService.getSynonymFile(body.dictId)
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/api/admin/elevateword/ApiAdminElevatewordAction.java
* * @param body download parameters * @return stream response containing the CSV file */ @Execute public StreamResponse get$download(final DownloadBody body) { validateApi(body, messages -> {}); return asStream("elevate.csv").contentTypeOctetStream().stream(out -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
* @return stream response containing the dictionary file data */ // GET /api/admin/dict/stemmerOverride/download/{dictId} @Execute public StreamResponse get$download(final String dictId, final DownloadBody body) { body.dictId = dictId; validateApi(body, messages -> {}); return stemmerOverrideService.getStemmerOverrideFile(body.dictId)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java
* @return stream response with file content */ // GET /api/admin/dict/mapping/download/{dictId} @Execute public StreamResponse get$download(final String dictId, final DownloadBody body) { body.dictId = dictId; validateApi(body, messages -> {}); return charMappingService.getCharMappingFile(body.dictId)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.5K bytes - Viewed (0)