Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for delete$index (0.06 seconds)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java

         * @param body the plugin deletion data containing name and version
         * @return JSON response indicating success or failure
         */
        // DELETE /api/admin/plugin
        @Execute
        public JsonResponse<ApiResult> delete$index(final DeleteBody body) {
            validateApi(body, messages -> {});
            deleteArtifact(new Artifact(body.name, body.version));
            return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/suggest/index/operations/WordManagementOperations.java

            final String normalized = normalizer.normalize(elevateWord, "");
            settings.elevateWord().delete(normalized);
            if (apply) {
                return deletionOps.delete(index, SuggestUtil.createSuggestTextId(normalized));
            }
            return new SuggestDeleteResponse(null, 0);
        }
    
        /**
         * Restores elevate words.
         *
         * @param index The index name
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 6.4K bytes
    - Click Count (0)
Back to Top