- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 410 for doDelete (0.05 sec)
-
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
* @param id the document ID to delete * @return true if the deletion was successful, false otherwise */ public boolean deleteDocument(final SearchEngineClient searchEngineClient, final String id) { final FessConfig fessConfig = ComponentUtil.getFessConfig(); return searchEngineClient.delete(fessConfig.getIndexDocumentUpdateIndex(), id); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java
@Secured({ ROLE }) public HtmlResponse delete(final EditForm form) { verifyCrudMode(form.crudMode, CrudMode.DETAILS); validate(form, messages -> {}, this::asDetailsHtml); verifyToken(this::asDetailsHtml); final String id = form.id; keyMatchService.getKeyMatch(id).ifPresent(entity -> { try { keyMatchService.delete(entity);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 16.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java
* @param id the ID of the synonym item to delete * @return JSON response indicating the deletion status */ // DELETE /api/admin/dict/synonym/setting/{dictId}/{id} @Execute public JsonResponse<ApiResult> delete$setting(final String dictId, final long id) { synonymService.getSynonymItem(dictId, id).ifPresent(entity -> { synonymService.delete(dictId, entity);
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/test/java/org/codelibs/fess/it/ITBase.java
public static void deleteTestToken() { final String testToken = System.getProperty(TEST_TOKEN); if (testToken != null) { return; } given().contentType("application/json").delete(getEsUrl() + "/fess_config.access_token/_doc/" + DEFAULT_TEST_TOKEN_ID); } public static void refresh() { given().contentType("application/json").post(getEsUrl() + "/_refresh"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ScheduledJobService.java
return scheduledJobBhv.selectByPK(id); } /** * Deletes a scheduled job. * @param scheduledJob The scheduled job to delete. */ public void delete(final ScheduledJob scheduledJob) { scheduledJobBhv.delete(scheduledJob, op -> { op.setRefreshPolicy(Constants.TRUE); }); ComponentUtil.getJobHelper().remove(scheduledJob); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java
* * @param dictId The ID of the stemmer override dictionary * @param stemmerOvberrideItem The stemmer override item to delete */ public void delete(final String dictId, final StemmerOverrideItem stemmerOvberrideItem) { getStemmerOverrideFile(dictId).ifPresent(file -> { file.delete(stemmerOvberrideItem); }); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
* This includes removing associated web authentications and request headers. * * @param webConfig The web configuration to delete */ public void delete(final WebConfig webConfig) { final String webConfigId = webConfig.getId(); webConfigBhv.delete(webConfig, op -> { op.setRefreshPolicy(Constants.TRUE); }); webAuthenticationBhv.queryDelete(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/webapp/js/admin/admin.js
var docId = button.data("docid"); var title = button.data("title"); var url = button.data("url"); $(this) .find(".modal-body #delete-doc-title") .text(title); $(this) .find(".modal-body #delete-doc-url") .text(url); $(this) .find(".modal-footer input#docId") .val(docId); }); // Date range picker var lang = (
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Aug 06 20:44:47 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java
* Deletes a single file and any empty parent directories. * * @param path the file path to delete */ protected void deleteFile(final Path path) { try { Files.delete(path); if (logger.isDebugEnabled()) { logger.debug("Delete {}", path); } Path parent = path.getParent();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/ApiAdminSearchlistAction.java
} /** * Deletes a document by ID from the search index. * * @param id the document ID to delete * @return JSON response indicating success or failure */ // DELETE /api/admin/searchlist/doc/{doc_id} @Execute public JsonResponse<ApiResult> delete$doc(final String id) { try { final QueryBuilder query = QueryBuilders.termQuery(fessConfig.getIndexFieldDocId(), id);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.2K bytes - Viewed (0)