Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DeleteBody (0.23 sec)

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

     * for REST API operations.
     */
    public class DeleteBody extends DeleteForm {
    
        /**
         * Creates a new instance of DeleteBody.
         * This constructor initializes the request body for plugin deletion API operations,
         * extending the standard plugin DeleteForm with JSON request body functionality.
         */
        public DeleteBody() {
            super();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java

         * @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());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top