Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for post$index (0.2 sec)

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

         * @param body the plugin installation data containing name and version
         * @return JSON response indicating success or failure
         */
        // POST /api/admin/plugin
        @Execute
        public JsonResponse<ApiResult> post$index(final InstallBody body) {
            validateApi(body, messages -> {});
            final Artifact artifact = ComponentUtil.getPluginHelper().getArtifact(body.name, body.version);
            if (artifact == null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                try (CurlResponse response = ComponentUtil.getCurlHelper()
                        .post("/" + index + "/_update_by_query")
                        .param("refresh", refresh)
                        .param("max_docs", "1")
                        .body(source)
                        .execute()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top