- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for ApiPluginResponse (1.34 sec)
-
src/main/java/org/codelibs/fess/app/web/api/ApiResult.java
* Represents an API response for plugin information. */ public static class ApiPluginResponse extends ApiResponse { /** The list of plugins. */ protected List<Map<String, String>> plugins; /** * Default constructor for ApiPluginResponse. */ public ApiPluginResponse() { super(); } /** * Sets the list of plugins.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/plugin/ApiAdminPluginAction.java
// GET /api/admin/plugin/installed @Execute public JsonResponse<ApiResult> get$installed() { final List<Map<String, String>> list = getAllInstalledArtifacts(); return asJson(new ApiResult.ApiPluginResponse().plugins(list).status(ApiResult.Status.OK).result()); } /** * Retrieves the list of available plugins for installation. * * @return JSON response containing available plugin list */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0)